Skip to main content

Home/ Python Programming/ Group items tagged python

Rss Feed Group items tagged

1More

Python Programming Books Set: Python Programming For Beginners & Complete Guide For... - 0 views

  •  
    Python Programming Books Set: Python Programming For Beginners & Complete Guide For Python Programming [James P. Long] on Amazon.com. *FREE* shipping on qualifying offers. Quick & Easy Guide to Python Programming For Beginners These Books Set is for those who are interested in learning Python programming language. The book Python Programming For Beginners and Complete Guide For Python Programming are Quick and Easy Guide for Programmers to learn python programming Language. These books include all the basics of python
4More

Edgewall Software: Python Sidebar - 24 views

  •  
    When programming Python, I tend to visit the most current reference documentation quite often. To get faster and more convenient access to the documentation, inspired by Mark Hammond's sidebar, I wrote an updated sidebar for the Mozilla family of web browser.
  • ...1 more comment...
  •  
    Interesting post! I'm thinking about starting learning programming. Recently I've found out that Python has become the fourth among other languages. Also it is loved by many programmers because of less code lines. It has to be noted, as Python's rating has increased, the demand for Python programmers skyrocketed, that led to the growth of their wages. There is a good article on the topic - https://diceus.com/python-developer-salary/. So, I'm going to choose exactly this language. And your information is useful for me. Thanks for sharing!
  •  
    Protonshub is Top Python Web Development Company that provides Cutting-Edge Python Web Development on Offshore delivery models. Get your Python Web Development Team within 3 days. Looking for the best python development company? https://www.protonshub.com/technologies/python-development Call Us today for a free consultation.
2More

Re: Python in Excel - 0 views

  • You can use Microsoft Script Control. If you have the win32 extensions of python, you can use python in place of vb in this control -open the VBA script editor - In menus/Tools/References add Microsoft Script Control -Make a new module and declare a new MsScriptControl.ScriptControl Global sc as new MsScriptControl.ScriptControl -Initialize the language attibute with python - Note that you and users of your document must have python and its win32 extensions installed. Activestate python distribustion include it. You can put sc.language="python" in the routine Workbook_Open() Now you can import python modules using ExecuteStatement method of the control in vba and have results from python functions with eval method. One interesting thing is that you can pass an object to the control with AddObject method and have python manipulate it. And so on..
  • Global sc As New MSScriptControl.ScriptControl Public Function os_getcwd() sc.Language = "python" sc.ExecuteStatement ("import os") os_getcwd = sc.Eval("os.getcwd()") End Function With this you can set your Excel formula to =os_getcwd() For me it returns "C:\Documents and Settings\Administrator\My Documents", which I needed to know at the time so I didn't have to screw around with the ever annoying pythonpath. You can put the first two lines of the function in the Workbook_Open hook, but I don't know where that is. I hope to use more Python in Excel soon. Hmm, actually, I suppose you can put those first two lines of the function after the Global declaration as well. I know just about zero VBScript and didn't get a chance to do anything else beyond proof of concept yet. I figured I would write something dynamic which allowed more transparent access to Python, maybe allowing formula like =py("os.getcwd()"), etc.
1More

Best Python Libraries for Data Science - 1 views

  •  
    Libraries are collection of functions and methods that enable you to perform a wide variety of actions without writing the code yourself. First of all, there are over 137.000 libraries in Python. In this article we are going to learn : Scientific Computing Libraries in Python Visualization Libraries in Python High-Level Machine Learning and Deep Learning Libraries in Python Deep Learning Libraries in Python Python Libraries for NLP ( Natural Language Processing )
1More

Quick And Easy Guide For Python Programmers - 1 views

  •  
    Python is a powerful language with a simple, regular syntax that makes it an easy language for beginners to learn. It allows programmers to work quickly and is used for scripting and rapid application development. "Python Programming For Beginners" by James P. Long is the best one python programming book for beginners who want to learn python programming. For deeper understanding of python programming language you can go through this book.

Python Proficiency: Crafting a Digital Shopping Cart - 3 views

started by enzojade62 on 16 Nov 23 no follow-up yet

What tasks do remote python developers execute as a freelancer? - 1 views

started by utkarsh11111 on 16 Dec 21 no follow-up yet
1More

Top 50 Mostly Asked Python Interview Questions & Answers - NareshIT - 0 views

  •  
    TOP 50 Python Interview Questions And Answers https://nareshit.com/top-python-interview-questions-answers/ This python interview questions and answers will help you to clear your interview. In this blog we are providing the top 50 most asked interview questions about python. We are providing questions along with answers also. In this blog we are providing frequently asked questions in interview. These questions will be helpful for beginners and professionals also
1More

How to get currently active window on Win32? - 0 views

  • On Sat, 15 Dec 2001 17:53:49 -0800 (PST), David Brady <daves_spam_dodging_account at yahoo.com> wrote : >More win32all questions... is it possible to get the >handle of the window that currently has the focus? >win32gui.GetActiveWindow() fails because I'm looking >for a window outside the process of my Python script. E:\>python ActivePython 2.1.1, build 212 (ActiveState) Python 2.1.1 (#20, Jul 26 2001, 11:38:51) [MSC 32 bit (Intel)] on win32 Type "copyright", "credits" or "license" for more information. >>> import win32gui >>> import time >>> for x in range(10): ... time.sleep(1) ... print x, win32gui.GetWindowText(win32gui.GetForegroundWindow()) ... 0 cmd - python 1 cmd - python 2 (Untitled) * SciTE 3 (Untitled) * SciTE 4 ActivePython Documentation 5 ActivePython Documentation 6 PythonWin 7 PythonWin 8 PythonWin
2More

Pypar -- parallel programming - 0 views

  • Pypar does not require the Python interpreter to be modified or recompiled: Parallel python programs use the standard Python and need merely import the pypar module. This means for example that you can upgrade Python independently of your parallel codes.
  • Pypar is an efficient but easy-to-use module that allows programs/scripts written in the Python programming language to run in parallel on multiple processors and communicate using message passing. Pypar provides bindings to an important subset of the message passing interface standard MPI. Other Python MPI bindings available from other developers include: PyMPI, Scientific Python and pythonMPI.

Python Homework Help - 1 views

started by javahomeworkhelp on 11 Jan 24 no follow-up yet
1More

ONLamp.com -- Introduction to Stackless Python - 0 views

  • Stackless Python is an alternative implementation of Python created by independent developer Christian Tismer. He started with the conventional Python language processor managed by the language's inventor, Guido van Rossum, and patched his own Stackless invention in place of a small but central part of Python's internals. Stackless Python is the result. This article introduces Tismer's technology and its significance. In future articles, you'll be able to read about how to make your own start at programming Stackless Python, as well as the prospects for a merger between Stackless and the main Python distribution.
1More

Best Way to Learn Numpy - 0 views

  •  
    NumPy is the fundamental package for scientific computing in Python. Numpy stands for Numerical Python. If you want to work with machine learning or data science, Numpy is a Python library you will mostly use. It is a Python library that provides a multidimensional array object for fast operations on arrays, including mathematical, logical, shape manipulation, sorting, selecting, I/O, discrete Fourier transforms, basic linear algebra, basic statistical operations, and much more.
1More

Parallelization on muli-CPU hardware? - comp.lang.python | Google Groups - 0 views

  •  > According to the fact that all Thread run on the same CPU (if i didn't  > understand wrong), i'm asking if python will suffer from the future  > multicore CPU. Will not python use only one core, then a half or a  > quarter of CPU ? It could be a serious problem for the future of python... I agree that it could potentially be a serious hindrance for cpython if "multiple core" CPUs become commonplace. This is in contrast to jython and ironpython, both of which support multiple-cpu parallelism. Although I completely accept the usual arguments offered in defense of the GIL, i.e. that it isn't a problem in the great majority of use cases, I think that position will become more difficult to defend as desktop CPUs sprout more and more execution pipelines. I think that this also fits in with AM Kuchling's recent musing/thesis/prediction that the existing cpython VM may no longer be in use in 5 years, and that it may be superceded by python "interpreters" running on top of other VMs, namely the JVM, the CLR, Smalltalk VM, Parrot, etc, etc, etc. http://www.amk.ca/diary/archives/cat_python.html#003382 I too agree with Andrew's basic position: the Python language needs a period of library consolidation. There is so much duplication of functionality out there, with the situation only getting worse as people re-invent the wheel yet again using newer features such generators, gen-exps and decorators.

Want to learn Python Programming? - 0 views

started by amby kdp on 03 Jan 15 no follow-up yet
1More

Build your ideas faster and easier with Python & Django Web Development Services - 0 views

  •  
    Want to hit a million requests per second but doubt if Python can do that? Today we can speed up any project written in Python. High-performance web apps for your business growth and success.Build your ideas faster and easier with Python & Django Web Development Services
1More

Acerca de Pybonacci « Pybonacci - 0 views

  •  
    Somos unos apasionados de Python que nos hemos decidido a rellenar el que pensamos que es un hueco importante en la blogosfera hispana: el uso de Python para aplicaciones científicas. Nuestra intención es escribir con regularidad sobre cómo podemos utilizar este lenguaje de programación fantástico que es Python para resolver problemas en ciencia e ingeniería, utilizando librerías como NumPy, SciPy, matplotlib, SymPy y muchas más. También traduciremos artículos escritos en otros idiomas que nos resulten interesantes, mostraremos pequeñas recetas y escribiremos reseñas sobre programas o bibliotecas que nos resulten interesantes.
1More

Pyzo - Python to the people - Pyzo - Python to the people - 0 views

  •  
    "Pyzo - Python to the people Pyzo is an interactive computing framework based on Python, an easy and powerful programming language. It's mission is to provide a computing environment aimed at doing science and building professional applications, that is easy to obtain, easy to use, and free."
1More

IpythonOnConsole - IPython - 0 views

  • IPython on resizeable Win32 Console If you are on win32, you might want to use Console, an open source replacement for that inflexible old win32 terminal. Here's how. Install IPython using the .exe installer. Download stable version of Console (1.5 at this time). Create a shortcut to console.exe, right-click -> properties. Set target to e.g. C:\opt\Console\console.exe -c "/k python c:\python25\scripts\ipython.py -p sh" you can also create a tab dedicated to Ipython (and have other dedicated to other shells or command-line app). go to edit->settings->tabs : click on the add button and fill the following fields : * title : ipython ico : C:\Python24\py.ico shell : cmd.exe /k "ipython" start-up dir : whatever is good for you. note that python.exe need to be in the path Using IPython with Version 2 of Console use the -r option for creating the shortcut, e.g. C:\opt\Console2\console.exe -r "/k python c:\python25\scripts\ipython.py -p sh" Some advantages of Console2 over normal console (for IPython use) Distinctive taskbar icon Can reside in system tray There are many other benefits, so it's well worth setting up Example config for Console-2.00b120-Beta (you need to edit the xml file): http://vvtools.googlecode.com/svn/trunk/config/console.xml If you have problems with ctrl+C killing Console2 immediately, launch ipython from a normal Console2 session manually.
1 - 20 of 472 Next › Last »
Showing 20 items per page