这个f在这句话中是啥意思? [复制]
Posted
技术标签:
【中文标题】这个f在这句话中是啥意思? [复制]【英文标题】:What does this f mean in this sentence? [duplicate]这个f在这句话中是什么意思? [复制] 【发布时间】:2021-10-27 14:18:39 【问题描述】:我从一开始就学习 python,但我不明白它所说的 2:.2f 部分。我知道它与字符串格式有关,但没有更多。
a = int(input('introduce a number: '))
b = int(input('introduce a number: '))
print('the result of 0 divided by 1 is 2:.2f, and the result of 1 divided by 0 es 3'.format(a, b, a/b, b/a))
谢谢!
【问题讨论】:
这表示浮点数四舍五入。查看更多信息here 另见***.com/questions/8885663/…。请注意,您询问的“f”与“f-string”中的“f”不同。 【参考方案1】:代表浮点数,表示点后的位数
【讨论】:
以上是关于这个f在这句话中是啥意思? [复制]的主要内容,如果未能解决你的问题,请参考以下文章