Python
Lesson 1
Lesson 2
Lesson 3
Hello World
??? Use
print()
to display text
?? Strings must be quoted
?? Python is case-sensitive
Loops
??
for
loops iterate sequences
??
range(n)
creates a number list
?? Indentation is critical!
Functions
?? Use
def
to declare functions
?? Inputs go in parentheses
?? Use
return
to give back results
Input
print("Hello, FNT204 Students")
Input
for i in range(5):\n print("Iteration", i)
Input
def greet(name):\n return f"Hello, {name}!"
Run
Save
Output
Results will appear here...