Python in 90 minutes

preview_player
Показать описание
Learn the Python programming language in under 90 minutes. Slow paced for beginners. Covers variables, math functions, loops, lists, sets, tuples, dictionaries, strings, functions, classes, and much more.

PYTHON POWER TOOLS

Рекомендации по теме
Комментарии
Автор

1) x = 2
2) print(id(x))
3) x = x + 5
4) print(id(x))
The first x in rule number 3 is a new variable. The second x is the one with the value of 2. It took me some time to get my head around it.
To prove it, run the code, see above, rule 2 and 4. The adressnumbers are different. This for the newbees.

perfectorywebdesign
Автор

What a contribution! Congratulations for your video!

viniciusbrandao
Автор

Thanks a lot Joe! This tutorial was extremely helpful. I wish that I become software developer some day and my biggest dream is to get a job from Silicon Valley. Have a nice day!

biesman
Автор

Thank you for this all of your videos. I found them to be very useful and methodical. May you attain more knowledge

fasteddy-fdkr
Автор

Python looks very straightforward and powerful, thanks Joe.

izack
Автор

Hey, I just skimmed through a bit (trying to figure whether I can recommend this as a tutorial) and thanks most of all for compiling this long tutorial. I spotted one mistake while skimming through: When explaining type conversion in the beginning you state things like "int() is string to integer conversion" and alike - that is wrong and potentially misleading. conversion functions in Python always do conversion to the target type, assuming your source type implements the conversion. So in principle int() converts any object to an Integer as long as the object tells it how to.

AnguisTerrenis
Автор

thank you, short and informative, could you please do series for java gui project and sql together like one project and show the concepts.

njmusama
Автор

thank you, short and informative, could you please do series for python qt4 gui project and sql together like one project and show the concepts.

njmusama
Автор

That Line "You can do anything if you set your mind to it" is originally from Eminem :D #LoseYourself

ashishtiwari