- Write and run your first Python program
- Get user input and display output
- Debug simple errors
- Create a multi-step program
Write a Python program that prints "Hello, World!"
Create a program that:
- Asks the user for their name
- Greets them by name
Fix the errors in this code:
print("What's your favorite color?")
color = input()
print("Wow, color is a great color!")Create a program that:
- Asks for the user's name
- Asks for their age
- Asks for their favorite programming language
- Displays a formatted introduction with all the information
Complete?
- All exercises working
- Filled out journal entry
- Ready for next lesson