Python Coding Introduction Mission Worksheet
Use this sheet to capture notes and keep track of what you learned today.
1) Warm-Up Check-In
- One thing I know about programming:
- One thing I want to create today:
2) Python Basics
Fill in the blanks.
- Python is a programming language that:
- Variables in Python are created by:
- Python uses snake_case, which looks like:
- The difference between
=and==:
3) Variable Lab
Create three variables about yourself (write the code):
# Write your code here:
4) Data Types Detective
For each value, write if it’s a string, integer, float, or boolean:
"Learning to code" |
42 |
True |
"100" |
3.14 |
False |
5) print() and input() Practice
What will this code display and do when you run it?
name = input("What is your name? ")
color = input("Favorite color? ")
print(f"Hello, {name}! You like {color}!")
What happens first:
What happens next:
Final output (if you type “Alex” and “blue”):
6) Reflection
- Coolest thing I learned today:
- Something I want to practice more:
- My next coding goal: