NEW
Font size
WorksheetsQuiz1_7A
Total questions: 20
Worksheet time: 10mins
What is the Python built-in function used to display numbers and text on the screen?
input
output
command
What is the output from the following code?
print ("hello world")
Which of the following code is a Python Comment?
#this is a comment
{ this is a comment }
" this is a comment "
( this is a comment )
Quelle est la syntaxe correcte pour afficher "Hello World" en Python ?
echo("Hello World");
p("Hello World")
print("Hello World")
echo "Hello World"
1==0
True
False
What is the missing instruction?
(print)
"Print"
holds whole numbers
holds a decimal point in a number
A memory location where you store values
The statement input allows us to:
input values to the code
Read what the user typed
order the imported statements
show there name
What will be the output?
name = "Dave"
print (name)
Dave
'Dave'
name
(name)
