コストに2.50を追加するにはどうすればよいですか?変数に小数点以下2桁の数値を追加する(2.50)
は今のところそれはちょうどあなたの代わりにあなたの現在の法案を印刷するには、このコマンドを使用して、この行
print("Your current total cost is " + "£" + str(int(current)))
でintにあなたのフロート現在の請求額を変換する2.
cost = 0.00
r = open("toppings.txt")
bases = ["small","medium","large"]
toppings = ["Pepperoni","Chicken","Cajun Chicken","Mushrooms",
"Red Onions","Sweetcorn","Ham","Cheese","Spicy Minced Beef",
"Anchovies","Tuna","Peppers","Jalapenos","Green Chillies"] #0-13
def small():
current = cost + 2.50
print("Your current total cost is " + "£" + str(int(current)))
int(current)を削除し、str(current)を直接使用します。 –
int() – DZDomi
'print("あなたの現在の総コストは£%2f "%current"です。 – Bodhi94