美文网首页
python基础

python基础

作者: 做只小考拉 | 来源:发表于2018-08-17 20:11 被阅读9次

(借用别人一幅总结图)

微信图片_20180817183725.jpg

python中.format方法是格式化输出,也就是在{}的地方替换为变量的值。

add = 3 + 4

print(‘3 + 4的值是{}’.format(add))

在python3.6以上版本中,为了减少{},可以使用f‘’的方法。

com = ‘Complex’
comp = ‘complicated’

#3.6以下的用法
print('{} is better than {}'.format(com,comp))

#3.6以上的用法
print(f'{com} is better than {comp}')

相关文章

网友评论

      本文标题:python基础

      本文链接:https://www.haomeiwen.com/subject/grmtiftx.html