I know a handful of you around here know Python and I'm interested in expanding my knowledge and abilities with this language. I come from a strong MATLAB background, so I'm familiar with basics like functions and loops, but I'm looking for a tool or a website or something similar that will help me learn the intricacies of Python. Any recommendations appreciated. Thanks.
An earnest effort to learn Python
Collapse
X
-
Tags: None
-
-
Re: An earnest effort to learn Python
Project Euler ;P
Some people also like "Learn Python the Hard Way" but I can't speak to itComment
-
Re: An earnest effort to learn Python
Haha, you would... but PE is far beyond my abilities with Python at the moment.Comment
-
Re: An earnest effort to learn Python
Incorrect. You have not tried it.
You will learn Python incredibly fast if you do the first 5 PEs. After you have completed them, try your hand at some web scripting.
Edit: You will find that Python is an incredibly stupid simple language, that can be extraordinarily powerful.Last edited by Zageron; 02-27-2012, 10:53 PM.Comment
-
Re: An earnest effort to learn Python
I have, actually. I did about 12 problems with MATLAB and 3 with Python because Python can handle numbers larger than 2^32, unlike MATLAB.Comment
-
Re: An earnest effort to learn Python
Two things to note.
Python 2.x and Python 3.x are NOT compatible. What this means is you probably can't slap Python 2.x code into a Python 3.x application or vica-versa. You will also need an interpreter appropriate for the version you use.
Whitespace matters in Python.Originally posted by Crashfan3Man, what would we do without bored rednecks?Comment

Comment