From 7764ba2c19838a3866434fcb99dd2d7116db14c5 Mon Sep 17 00:00:00 2001 From: Junior Date: Mon, 3 Jun 2024 13:58:34 -0400 Subject: [PATCH] Fix poor comments --- Python/025_tryexcept.py | 2 -- Python/030_uselibrary.py | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) 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