Basics Worksheet 1
star
star
star
star
star
Last updated over 1 year ago
5 questions
1
What is the output?
print ("Setting the timer to")print ("5 min")
What is the output?
print ("Setting the timer to")
print ("5 min")
1
What is the output?
print "Name: \tNathan"
What is the output?
print "Name: \tNathan"
1
What is the output?
print 4*5+10/3
What is the output?
print 4*5+10/3
1
What is the output?
num1 = 3num2 = 2num1 = num1 + num2print num1
What is the output?
num1 = 3
num2 = 2
num1 = num1 + num2
print num1
1
What is the output?
def numbers():print random.randint(25,50)
What is the output?
def numbers():
print random.randint(25,50)