Getting Back to Learning Python Programming: May 28 2020

Now that I have a new computer I am getting back to learning Python programming. Because of the interruption between computers I spent today reviewing what I've already learned. I did learn one new thing though. When dealing with large numbers I can't use commas but I can use underscore. For example 10,000 would be 10_000 in Python code and 100,000,000 would be 100_000_000. Grouping the zeroes makes quickly double-checking large numbers easier.

5357
Daily Activity, Walking