Hello everyone! I am currently trying to teach myself Python and for the most part I am doing alright with it. However, I was trying to do an example from a...
Here is the key to all you seek: http://www.catb.org/~esr/faqs/smart-questions.html ... -- Turnabout is fair play... http://uath.org/english.php?news=26...
... Please do read the above, which is a great resource. The short answer to your question, however, is that you should cut and paste the section of code...
Hi, I have 350 stock tickers in a spreadsheet file (stocklist.csv). I am trying to generate a list of symbol and price per share using the yahoo API in yahoo...
You'll need to look at threads more carefully, and learn about the `join` method. You'll want to do something along the lines of: threads = [] for i in...
Hi Andrew, It helps a great deal. I had seen the join() method in other thread examples and misunderstood it. I thought it was a method from the string object...
Hi Andrew: The following checks 350 stock symbols in 4 seconds. Not bad considering the non-threaded program takes 33 seconds. It works very well now thanks to...
Hi, George. So, what are you looking for in a language? What language(s) have you used already? I think Python is a fantastic language, but there are a lot of...
Botonomy LLC is a small and growing Philadelphia-area IT consulting company founded in 2005 which specializes in Python-based solutions. PyGuys.com provides an...
Prentice Hall sent me a copy of Python Fundamentals (http:// www.informit.com/store/product.aspx?isbn=0137143419). It includes 7 hours of video training. Is...
Hey Andrew, I think I could benefit from the training. I am primarily a .net developer and have not been successful in getting python into my organization....
Greetings: I'd like to find out if there would be interest in a Fall 2009 conference/working group to examine the use of multithreaded approaches (and...
Great, I'll wait a few days to see how many people are interested. I can pick up a few people from computer or possible Neuro-Bio-Engineering students but the...
The idea is to get a few people together and share cross discipline expertise (Computer-Neurology-Biology) then publish the conference proceedings. I'd like...
This is some new conference out in Portland, OR. Someone can go for free, and if anyone is interested, I'll put it in a text file and write a script that uses...
Hi, I'm with the Central PA Linux User Group (CPLUG) and we are running another Central PA Open Source Conference (CPOSC) this year on October 17, 2009 in...
Triangle Zope and Python Users Group (TriZPUG, http://trizpug.org) extends an invitation to you to attend one of our annual, week-long, ultra-low cost...
I am running Python 2.6.2 on my windows 7 RC 1 x64 laptop and attempting to learn python as a beginner programmer on my own, but I'm having difficulty...
So, I've never used IDLE or Windows. That said, I think you are getting confused between the Python shell (which uses ">>>" as the prompt, and probably runs...
Erik Osheim
erik@...
Jun 9, 2009 8:24 pm
323
so - once I get to the python command prompt, I should be able to open .py files - right? and am I doing that incorrectly or is that, from within python you ...
If that still doesn't work then you likely need to add python to windows path. For Windows 7 right-click on the "Computer" (aka My Computer) and choose...
... Well, from python, you can import python modules (to import foo.py, you'd write "import foo"). You can't run python scripts from within python--or at...