From d2bcc730f3fc174002f7a4d158dc65c24934e6be Mon Sep 17 00:00:00 2001 From: Borret <126922551+BorretSquared@users.noreply.github.com> Date: Wed, 30 Jul 2025 18:11:11 -0400 Subject: [PATCH] Improve gramatical correctness A clearly vital improvement to the code to make it more readable --- Level 0/level_0_intro.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Level 0/level_0_intro.py b/Level 0/level_0_intro.py index 371ef40..bf06f09 100644 --- a/Level 0/level_0_intro.py +++ b/Level 0/level_0_intro.py @@ -17,7 +17,7 @@ Use the "print()" function by putting a string of text inside of the () Strings - In programming we usually put text in quotes, like "this" or "this sentence right here!" + In programming, we usually put text in quotes, like "this" or "this sentence right here!" This is called a "string". Basically, it's just some words inside of quotes. Strings help the program understand that something is just plain text, rather than being code it should analyze. @@ -34,4 +34,4 @@ # This is an example of a comment! # The # at the beginning ensures this line of code doesn't do anything. -print("Example print!") \ No newline at end of file +print("Example print!")