Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Level 0/level_0_intro.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand All @@ -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!")
print("Example print!")