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使用方法的主要内容,如果未能解决你的问题,请参考以下文章