DEV Community

Ari Wira Saputra
Ari Wira Saputra

Posted on

Days_12 Find All the Bugs

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!")
Enter fullscreen mode Exit fullscreen mode

Top comments (0)