Basics Worksheet 1

By Mickey Arnold
Last updated 10 months ago
5 Questions

What is the output?

print ("Setting the timer to")
print ("5 min")

What is the output?

print "Name: \tNathan"

What is the output?

print 4*5+10/3

What is the output?

num1 = 3
num2 = 2
num1 = num1 + num2
print num1

What is the output?

def numbers():
print random.randint(25,50)