str() 如何在 python 中实现?
Posted
技术标签:
【中文标题】str() 如何在 python 中实现?【英文标题】:how str() implement in python? 【发布时间】:2019-07-11 00:48:30 【问题描述】:节省和结果的定义
savings = 100
result = 100 * 1.10 ** 7
修复打印输出
print("I started with $" + savings+ " and now have $" + result+ " Awesome!")
pi_string的定义
pi_string = "3.1415926"
【问题讨论】:
不清楚你的问题是什么,你能说得更具体点吗? 您是否尝试过运行您的代码并查看它给出的错误? 你不能连接 'str' 和 'int' 对象 How can I concatenate str and int objects?的可能重复 @olivier,关闭为“不清楚你在问什么” 【参考方案1】:您可以像这样将int
s 转换为str
s:
print("I started with $" + str(savings)+ " and now have $" + str(result)+ " Awesome!")
或使用这样的字符串格式:
print("I started with $ and now have $ Awesome!".format(savings, result))
【讨论】:
以上是关于str() 如何在 python 中实现?的主要内容,如果未能解决你的问题,请参考以下文章