What is this block of code missing to work? Type the correct answer in the
textbox.
UserInput = input('Would you like express shipping?")
if Userinput == 'yes'
print("there will be a charge of €10 applied')
Answers
Answered by
6
UserInput = input("Would you like express shipping?")
if UserInput == "yes":
print("there will be a charge of €10 applied")
Answered by
0
Answer:
UserInput = input("Would you like express shipping?")
if UserInput == "yes":
print("there will be a charge of €10 applied")
Similar questions