solutions graded A+ (3)
Python is an ____ language. - correct answer ✔✔Interpreted
In python, you can write a print statement that includes two or more expressions, separated by - correct
answer ✔✔Commas
In python, a string literal is a sequence of characters enclosed in - correct answer ✔✔Single or double
quotation marks
The escape sequence ____ is the new like character. - correct answer ✔✔\n
End of line comments begins with the ____ symbol. - correct answer ✔✔#
In python, ____ is the exponentiation operator. - correct answer ✔✔**
In python, a ____ ends the loop header. - correct answer ✔✔:
The following loop will print ____ on the screen:
for count in range (4):
print count - correct answer ✔✔0 1 2 3
The ____ argument pythons range function specified a step value - correct answer ✔✔Third
"%6s" % "four" right justifies the string by padding it with ____ - correct answer ✔✔Two spaces to its left
____ is the format operator - correct answer ✔✔%