Daily Deal: Python For Beginners
from the good-deals-on-cool-stuff dept
Python is a high-level statically typed programming language that has become a trendsetter in the industry. It offers an easy syntax and a wide support for APIs and external packages. Python is extremely versatile it can be used for automation, GUI Applications, making websites, making web apps, and even for hacking! In the Python for Beginners course, you are going to learn the basics of the Python language and its fundamental concepts. It’s on sale for $15.
Note: The Techdirt Deals Store is powered and curated by StackCommerce. A portion of all sales from Techdirt Deals helps support Techdirt. The products featured do not reflect endorsements by our editorial team.
Filed Under: daily deal
Comments on “Daily Deal: Python For Beginners”
Statically typed?
I suspect quite a few Pythonistas might be surprised at this assertion, given you can easily do:
x = [1, 2, 3]
x = 1.0
x = "blah blah blah"
What is the type of x, exactly? I’m pretty certain it’s not one static thing at all.