Computer Science, asked by malak310512, 4 months ago

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 valeriy69
6

\large\mathsf\color{pink}{Solution\: using\: python\: 3}

UserInput = input("Would you like express shipping?")

if UserInput == "yes":

print("there will be a charge of €10 applied")

\large\mathsf\color{lightgreen}useful?\: \color{white}\longrightarrow\: \color{orange}brainliest!

Answered by Japji21
0

Answer:

UserInput = input("Would you like express shipping?")

if UserInput == "yes":

print("there will be a charge of €10 applied")

Similar questions