WorksheetsSpace Quest - Python - Mission 1
Total questions: 7
Worksheet time: 2mins
Which difficulties did you complete today?
Normal
Hard
Legendary
Extension
What Python function do we use to write to screen?
write
output
don't know
What would the code below do?
print ('Is everyone ok?')
Outputs 'Is everyone ok?' on the screen
Print 'Is everyone ok?' to the local printer
Outputs 'on the screen' on the screen
It won't do anything
What code would write 'hyperdrive' to the screen?
print ('hyperdrive')
print ('HYPERDRIVE')
print (hyperdrive)
none of the above
What is wrong with the following code?
print (We're going to crash)
Speech marks are missing
Print isn't the correct function to use
The code is using the wrong brackets
none of the above
What is a variable used for?
To store information in a programme
To write something to the screen
To add selection to a programme
none of the above
What is the variable called in the code below?
print ('what is your name? ')
myName = input()
print (myName)
myName
input()
MYNAME
none of the above
