All Basic Python theory articles in order. Variables, operators, conditionals, loops and functions explained from scratch with real examples and direct comparisons with other languages. If you’re starting with Python, start here.
-
Variables and data types in Python — why Python thinks differently
Variables and data types in Python were one of the first things that confused me when I started my Data Science and Engineering degree. In Python you just write x = 5 and you have a variable. No type declaration. No telling the computer what kind of value it is. Coming from zero programming experience, that felt like magic. In…
