If coding tutorials with math examples are the bane of your existence, keep reading. This series uses relatable examples like dogs and cats.
Builtin Functions
print("words")
>>> words
min(10, 20, 30, 40)
>>> 10
max(10, 20, 30, 40)
>>> 40
sum([10, 20, 30, 40])
>>> 100
Variables
- must start with a letter or underscore
- cannot start with a number
- only contain letters, numbers, and underscores
- case-sensitive
Series based on
Top comments (0)