python format使用方法

Posted 从前有座山,山上

tags:

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

#使用format 方法进行格式化
print("The number {1:} in hex is: {1:#x}, the number {0:} in oct is {0:o}".format(5555,55))
print("my name is {name},my age is {age},and my QQ is {qq}".format(name = "Dong Fuguo",age = 40 , qq = "30646****"))
#格式化的字符串常量
name = "Dong"
age = 39
print(f‘My name is {name}, and I am {age} years old.‘)

  

以上是关于python format使用方法的主要内容,如果未能解决你的问题,请参考以下文章

常用python日期日志获取内容循环的代码片段

使用 Python 代码片段编写 LaTeX 文档

使用 Python PyAudio 播放 2 声道声音

Python 向 Postman 请求代码片段

如何在 Scala 中使用 java.String.format?

python常用代码片段总结