会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
KeithTt
博客园
首页
新随笔
管理
2018年8月5日
字符串格式化format方法
摘要: 通过位置参数传参 print('{}, {}'.format('KeithTt', 18)) # KeithTt, 18 位置参数可以通过索引调用 print('{1}, {0}'.format('KeithTt', 18)) # 18, KeithTt 通过关键字参数传参 print('{name
阅读全文
posted @ 2018-08-05 00:27 KeithTt
阅读(442)
评论(0)
推荐(0)
编辑