NEW
Font size
WorksheetsPython quiz
Total questions: 10
Worksheet time: 5mins
What is the correct syntax to output "Hello World" in python?
p("Hello World")
echo("Hello World")
print("Hello World")
How do you insert COMMENTS in Python code?
/*This is a comment*/
//This is a comment
#This is a comment
Which one is NOT a legal variable name?
Myvar
my-var
_myvar
How do you create a variable with the numeric value 5?
Both the other answers are correct.
x = 5
x = int(5)
What is the correct file extension for Python files?
.py
.pyt
.pyth
How do you create a variable with the floating number 2.8?
Both the other answers are correct.
x = 2.8
x = float(2.8)
What is the correct syntax to output the type of a variable or object in Python?
print(type(x))
print(typeOf(x))
print(typeof(x))
What is the correct way to create a function in Python?
function myfunction():
create myFunction():
def myFunction():
In Python, 'Hello', is the same as "Hello"
True
False
Which method can be used to return a string in upper case letters?
toUpperCase()
uppercase()
upper()
