I can't get this if/elif/else
statement to work where if I say no it goes directly to internet_type = "None"
:
wifi = 10
stay = 10
cable = 10
if (input("Internet Used (Y/N): ") == "Y" or "y" or "Yes" or "yes"):
print("\u0332".join("Access Used"))
print("1- Wi-Fi connection")
print("2- Cable")
choice = input("Enter Choice 1 or 2: W or C")
if(choice == "1" or "W" or "w"):
internet_type = "Wi-Fi"
total_internet = wifi * stay
elif(choice == "2" or "C" or "c"):
internet_type = "Cable"
total_internet = cable * stay
else:
internet_type = "None"
total_internet = 0
print(internet_type)