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!")