click below
click below
Normal Size Small Size show me how
SStrPython 1-3
Graves Skill Struck Python 1-3
| Code | Result |
|---|---|
| print = “Hello World” | Doesn't work = , no parentheses |
| print = (Hello World) | Doesn't work =, no quotes |
| print = (“Hello World”) | Doesn't work = |
| print (“Hello World”) | Good |
| favorite_color = Red print (favorite_color) | Doesn't work no quotes |
| Favorite_color = "Red" print (Favorite_color) | Doesn't work Capital F |
| favorite color = Red print (favorite color) | Doesn't work No _, no quotes |
| favorite_color = (Red) print (favorite_color) | Doesn't work use " " instead of ( ) |
| favorite_number = 13 print (favorite_number) | Good variable gets the value of the integer |
| favorite_number = thirteen print (favorite_number) | Doesn't work no quotes |
| flavor = input ("What's your favorite ice cream flavor?") | 1. creates variable flavor 2. Prompts user for input 3. Stores user input in variable |
| flavor = input ("What's your favorite ice cream flavor?") print ("Your favorite flavor is " + flavor) | 1. Creates variable "flavor" 2. Prompts user for input 3. Stores user input in variable 4. Prints phrase plus value of variable |
| # flavor = input ("What's your favorite ice cream flavor?") | Debugging--deactivates code for testing |
| # print = “Hello World” | Debugging--deactivates code for testing |