|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Very Good
Thank you for your excellent articles.
<br /> I searched the web for good Python tutorials and found the best one here at devshed. <br /> |
|
#2
|
|||
|
|||
|
Love this
Hi guys, great job on this tutorial. Would love to see some in-depth examples of wxPython or TkInter. Thanks again.
|
|
#3
|
|||
|
|||
|
Re: Very Good
I agree - I have found this even better than some of the books out there for learning Python.
Cheers for the effort you have put in. Graham |
|
#4
|
|||
|
|||
|
Fantastic
I've been looking for a good excuse to turn my window box of and have a play with my Linux box, here it is. Great stuff.
|
|
#5
|
|||
|
|||
|
EXCELLENT
This is really cool! I can pick up the skills quick here, after not programming for so many years :-)
|
|
#6
|
|||
|
|||
|
Excellent!
Simple. To the point execatly what I was looking for!
I knew about the keyword, but was using it wrong! _instance def get(): if global _instance == None: _instance = MainForm(None) return _instance should be: def get(): global _instance if _instance == None: _instance = MainForm(None) return _instance |
|
#7
|
|||
|
|||
|
|
|
#8
|
|||
|
|||
|
|
|
#9
|
|||
|
|||
|
Python 101 (part 6): Hedgehogs, Pythons And Funky Chameleons
Python 101 \(part 6\): Hedgehogs, Pythons And Funky Chameleons
This week, Python 101 discusses how to abstract out parts of your Python code into reusable functions, add flexibility to them by allowing them to accept different arguments, and make them return specific values. Also included: a discussion of variable scope and functions to help you write your own functions. Confused? All is explained within... Please discuss this article in this thread. You can read the article here . |
![]() |
| Viewing: Dev Shed Forums > Other > Development Articles > Python 101 (part 6): Hedgehogs, Pythons And Funky Chameleons |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|