Есть четыре вещи неправильно с этим кодом. определить все четыре вопроса. answer = input("what is the name of dr. bunsen honeydew's assistant? ") if a = "beaker": print("correct! ") else print("incorrect! it is beaker.")
answer = raw_input("What is the name of Dr. Bunsen Honeydew's assistant? ") # input -> raw_input if a == "Beaker": # a = -> a == print "Correct!" # без скобок else: # else -> else: print "Incorrect! It is Beaker."
answer = raw_input("What is the name of Dr. Bunsen Honeydew's assistant? ") # input -> raw_input
if a == "Beaker": # a = -> a ==
print "Correct!" # без скобок
else: # else -> else:
print "Incorrect! It is Beaker."