python print 如何在输出中插入变量
时间: 2023-04-05 13:04:18 浏览: 160
Python Print实现在输出中插入变量的例子
5星 · 资源好评率100%
你可以使用格式化字符串来在输出中插入变量,例如:
name = "Alice"
age = 25
print(f"My name is {name} and I am {age} years old.")
这将输出:"My name is Alice and I am 25 years old."
阅读全文