1
2
3
4
5
6
7
8
9
10
11
12
To practice on your own, or to check code you believe shouldn't have been scored as incorrect, go to Trinket.
Post a review on Amazon for the paperback or the Kindle edition.
Email me to give me a compliment, complaint, or correction. I'll respond.
0,1,2,3,4,5,6,7,8,9,10,11
0
0
0
0
What keyword tells Python to display something on the screen? | ^ *print *$ | ||
Complete the line of code to tell Python to display the name of the oval object laid by a hen. (1 word, lower-case) | print________ | ("egg") | ^ *\(•egg•\) *$ |
Tell Python to display the letter "e". | print("e") | print`(`"`e`"`) | |
Tell Python to display the name of our planet. (1 word, lower-case) | print("earth") | print("earth") | |
Tell Python to display the name of the star that makes life possible on earth. (1 word, lower-case) | print("sun") | ^ *print\(•sun•\) *$ | |
In a print statement, the characters surrounded by quotation marks are a text _______. | string | ^ *string *$ | |
Tell Python to display the first three letters of the alphabet in upper-case. | print("ABC") | ^ *print\(•ABC•\) *$ | |
Tell Python to display a string of your choice | print("whatever") | ^ *print\(•.+•\) *$ | |
Tell Python to display your first name. | print("Mark") | ^ *print\(•.+•\) *$ | |
Tell Python to display the three-letter word for a canine. (1 word, lower-case) | print("dog") | ^ *print\(•dog•\) *$ | |
| 47bbbae759 | ||
| d47b9f2e2a |