Learn Python in minutes
learnxinyminutes.com
Learn Python in minutes
1–10 of 59 posts
Re: Learn Python in minutes
#2Re: Learn Python in minutes
#3Having just recently learned Python the "hard" way, I really wish I would've seen this beforehand. Even having done some hands-on work and a lot of Googling, I picked up a few new things from this I hadn't seen before. Thanks!
Re: Learn Python in minutes
#4Having just recently learned Python the "hard" way, I really wish I would've seen this beforehand. Even having done some hands-on work and a lot of Googling, I picked up a few new things from this I hadn't seen before. Thanks!
Coming from a php background I had (and am having) problems wrapping my head around the packaging section. I started to lose interest because of it. It's as if I hit a wall.
Can any Python hackers offer some good resources for learning more about packaging?
Re: Learn Python in minutes
#5I remember picking up a large book from a store shelf titled something like "Python for Programmers". Thinking, "Oh, this is for people who already know how to program and just want to learn Python". I open the book randomly and start reading it's explanation on what functions are in programming and why they're useful. I sighed and placed the book back on the shelf.
Re: Learn Python in minutes
#6Having just recently learned Python the "hard" way, I really wish I would've seen this beforehand. Even having done some hands-on work and a lot of Googling, I picked up a few new things from this I hadn't seen before. Thanks!
This existed as of two days ago, so don't feel too bad :)
Re: Learn Python in minutes
#7Great stuff!
As a sidenote, how does everyone take note (if you even do) when learning something new like a language or some kind of skill?
Re: Learn Python in minutes
#8Re: Learn Python in minutes
#9With or without the parens I'm getting the same result for "a, b, c = (1, 2, 3)"
Re: Learn Python in minutes
#10What does he mean by "# Tuples are created by default if you leave out the parentheses". With or without the parens I'm getting the same result for "a, b, c = (1, 2, 3)"
(a, b, c) = (1, 2, 3)