This course has taught you to squash bugs like a true programmer. Find the errors and start debugging like a pro
#Find All the Bugs
#
#22 MARCH 2023
print("100 Days of Code QUIZ")
print()
print("How many can you answer correctly?")
ans1 = ("What language are we writing in?")
if ans1 == "python":
print("Correct")
else:
print("Nope🙈")
ans2 = input("Which lesson number is this?")
if(ans2>12):
print("We're not quite that far yet")
elif(ans2==12):
print("That's right!")
else:
print("We've gone well past that!")
Top comments (0)