给数字加上逗号

时间:2019-06-09 01:48:58

标签: python comma

我正在尝试在我的股票计算器输出中添加逗号。从股票损益中求和时,数字需要用逗号隔开,但我似乎无法弄清楚。我看过其他类似的问题,但这是我的新手。因此,除非我的代码中明确显示了它,否则我将不明白该怎么做。

PoS=float(input("price of stock:")) #price of stock
Ap=float(input("amount paid:")) #Amount paid
Aos=(Ap/PoS) #Aos= Amount of stock
print("amount of stock:", Aos)


PoS2=float(input("price of stock:")) 
As=float(input("amount of stock sold:"))
PL=(PoS2*As)#Profit/loss on sell
print("Profit/Loss from sell",PL)
Cb=(Ap*.03)
Cs=(PL*.03)
Total=(-Ap +PL -Cb -Cs)
print(f'Total profit: {Total:.2f}')

0 个答案:

没有答案