Есть четыре вещи неправильно с этим кодом. Определить все четыре вопроса. answer = input("What is the name of Dr. Bunsen Honeydew's assistant? ") if a = "Beaker": print("Correct!") else print("Incorrect! It is Beaker.")
Есть четыре вещи неправильно с этим кодом. Определить все четыре вопроса.
answer = input("What is the name of Dr. Bunsen Honeydew's assistant? ")
if a = "Beaker":
print("Correct!")
else
print("Incorrect! It is Beaker.")
Ответ(ы) на вопрос:
Гость
Для Python 2.X:
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."
Не нашли ответ?
Похожие вопросы