Basics Worksheet 1

Last updated over 1 year ago
5 questions
1

What is the output?

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

1

What is the output?

print "Name: \tNathan"

1

What is the output?

print 4*5+10/3

1

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)