Two icicles melting

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....

February 21, 2021 · 3 min · Alan Scherger
Child starring at large set of steps.

100 Days of Python: Day 1

Real Python We’re going to start off this series by going through whatever fancies me on Real Python. Their Introduction to Python seems like a reasonable place to start, so off we go. Repl.it We can start sharing and playing with code instantly with repl.it. IDLE 3 Interacting With Python IDLE It turns out IDLE is an IDE for Python is perhaps usually installed with most distributions by default, so I figure I’d kick the tires on it....

February 19, 2021 · 3 min · Alan Scherger