Как правило, как только пользователь решил ввести «ДА» в соответствии с переменной RobotQ1, я хочу, чтобы код запускался снова, однако он проходит через второй пользовательский ввод, который RobotQ2.
restart = "Yes".lower()
while restart == "YES".lower():
print(" In order to obtain the harmonized code of your item answer all the following questions")
print()
print("Q1 : Does your car have 4 wheel drive")
RobotQ1 = input("YES / NO ?:")
if RobotQ1 == "YES".lower():
print("Here is the HS code:...")
restart = input("Do you want to use the application? (Yes / No): ")
if restart =="NO".lower():
print("bye")
break
elif RobotQ1 == "NO".lower():
print("Q2 : Does your Robot have 7 axes ?")
RobotQ2 = input("YES / NO ?:")
if RobotQ2 == "YES".lower():
print("Here is the HS code:....")
restart = input("Do you want to use the application? (Yes / No): ")
if restart =="NO".lower():
print("bye")
break