diff --git a/Python/025_tryexcept.py b/Python/025_tryexcept.py index 166be19..db12d5f 100644 --- a/Python/025_tryexcept.py +++ b/Python/025_tryexcept.py @@ -28,8 +28,6 @@ while age < 0: # Print a blank line print() -# Calculate - # Show the user what they typed # the "f" before the quote means that this string is "formatted" # Formatted strings can use curly bracket notation to embed diff --git a/Python/030_uselibrary.py b/Python/030_uselibrary.py index 6cfcc35..63f8a4f 100644 --- a/Python/030_uselibrary.py +++ b/Python/030_uselibrary.py @@ -1,4 +1,4 @@ -# Basic example of using try/except to catch errors +# Basic example of importing a library/module/class # import the datetime library # This imports the "datatime" class from the "datetime" module