这是一个简单的例子

amount1 = input("Insert your value: ")
amount2 = input("Insert your value: ")
print "Your first value is", amount1, "your second value is", amount2

可以,但是我想知道是否还有另一种方法可以在字符串中包含变量而无需串联或逗号。

这可能吗?

最佳答案

使用字符串格式:

s = "Your first value is {} your second value is {}".format(amount1, amount2)

这将自动处理数据类型转换,因此不需要str()

有关详细信息,请查阅Python文档:

https://docs.python.org/3.6/library/string.html#formatstrings

关于python - 如何在python中的字符串中插入变量值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44462209/

10-12 15:36