Answers.
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