python 使用.format()在Python中打印变量值

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 使用.format()在Python中打印变量值相关的知识,希望对你有一定的参考价值。

a = 2
b = 'Test'
 
print("a is {} and b is {}".format(a,b))

以上是关于python 使用.format()在Python中打印变量值的主要内容,如果未能解决你的问题,请参考以下文章

Python:在 Unicode 转义字符串上使用 .format()

如何在 Python 中使用 .format() 在“for”循环中打印列表?

在 Python 中对字符串使用 .format 时出现 KeyError [重复]

python format使用方法

python字符串的format函数如何使用?

Python之路--Python中应该使用%还是format来格式化字符串?