0
yen = 0.0067
bsp = 1.35
usd = 0.65
ero = 0.85

if choice == "2":
    Current_Currency = input("What currency do you want to exchange: Japenese Yen if so please type yen // British Sterling Pound please type bsp // US Dollers please Type usd // Euro please type ero.")
    if Current_Currency == "yen":
        amount = input("Type amount you wish to exchange")
        Future_Currency = input("What currency do you want to exchange into: Japenese Yen if so please type yen // British Sterling Pound please type bsp // US Dollers please Type usd // Euro please type ero.")
        New_Amount = Future_Currency * amount

私はこれを構築する必要があり、明らかに研究を通じてフロートが必要ですが、それを実装する方法についての手がかりがありません。

4

2 に答える 2