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