股票中获利比率的计算公式 python
时间: 2023-10-23 08:20:29 浏览: 254
股票收益计算
股票中获利比率的计算公式是:(卖出价格-买入价格)/买入价格。在Python中可以使用以下代码计算:
```python
buy_price = 10 # 买入价格
sell_price = 12 # 卖出价格
profit_rate = (sell_price - buy_price) / buy_price # 获利比率
print("获利比率为:{:.2f}%".format(profit_rate * 100))
```
输出结果为:获利比率为:20.00%。其中,{:.2f}表示保留两位小数输出。
阅读全文