100 Days of Python: Day 2
Data Types Continued Today we start off by continuing to learn about Data Types! Most of the rest of this actually isn’t helpful, but I got to play with some built-in functions like abs() and divmod() which was kinda fun. Variables in Python Variable Assignment Python uses the same basic assignment operations that most programming languages. 1 2 3 n = 300 print(n) # 300 Types are fluid though, so you can re-assign n to n = "hello" and life goes on....