美文网首页
{},.format()用法

{},.format()用法

作者: 她即我命 | 来源:发表于2018-12-01 16:02 被阅读12次
# 元组传值
print('my name is {}, age is {}'.format('lala',22))
# 列表传值
li = ['chenpeng',22]
print('my name is {}, age is {}'.format(*li))
# 字典传值
hash = {'name':'chenpeng', 'age':20}
print('my name is {name}, age is {age}'.format(**hash))

相关文章

网友评论

      本文标题:{},.format()用法

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