i want to know what to do with python from here:
ABCD = input("what kind of conversion would you like: Farenheit to Celcius, KM to MI, USD to Euros, or KG to LBS (note it goes other way around to) (A)(B)(C)(D): ")
if ABCD.upper() == "A":
F_OR_C = input("F or C: ")
if F_OR_C.upper() == "F":
TEMP = input("what temp: ")
yes = float(TEMP) - 32
conversion = yes / 1.8
print("your anwser is: " + str(conversion))
if F_OR_C.upper() == "C":
TEMP = input("what temp: ")
yes = float(TEMP) * 1.8
conversion = yes + 32
print("your anwser is: " + str(conversion))
if ABCD.upper() == "B":
KM_OR_MI = input("KM or MI: ")
if KM_OR_MI.upper() == "KM":
DIST = input("what is the distance: ")
conversion = float(DIST) * 0.62137
print("your anwser is: " + str(conversion))
if KM_OR_MI.upper() == "MI":
DIST = input("what is the distance: ")
conversion = float(DIST) / 0.62137
print("your anwser is: " + str(conversion))
if ABCD.upper() == "C":
U_E = input("USD or Euros: ")
if U_E.upper() == "USD":
amount = input("what is the amount: ")
conversion = float(amount) / 1.20
print("your anwser is: " + str(conversion))
U_E = input("USD or Euros: ")
if U_E.upper() == "EUROS":
amount = input("what is the amount: ")
conversion = float(amount) * 1.20
print("your anwser is: " + str(conversion))
if ABCD.upper() == "D":
KG_OR_LBS = input("KG or LBS: ")
if KG_OR_LBS.upper() == "KG":
weight = input("what is the weight: ")
conversion = float(weight) * 2.2
print("your anwser is: " + str(conversion))
if KG_OR_LBS.upper() == "LBS":
weight = input("what is the weight: ")
conversion = float(weight) / 2.2
print("your anwser is: " + str(conversion))