Quiz Time!
points= 0
answer = input("What does INT stand for? ")
if answer == "Integer":
print ("nice job that's correct")
points += 1
else:
print ("sorry that's incorrect")
points -= 0
answer = input("What does STR stand for? ")
if answer == "String":
print ("nice job that's correct")
points += 1
else:
print ("sorry that's incorrect")
points -= 0
answer = input("What is the function used for outputing into a terminal")
if answer == "print":
print ("nice job that's correct")
points += 1
else:
print ("sorry that's incorrect")
points -= 0