python学习格式化输出(一)

name = input('请输入你的姓名:')
age = input('请输入你的年龄:')
job = input('你的职业是:')
msg = '''-------------info %s------------
我的名字叫:%s
我的年龄:%s
我的职业是:%s
------------end--------------''' %(name,name,age,job)
print(msg)

 今天第一天学习格式化输出的%

posted @ 2019-07-09 16:45  冬的海洋  阅读(107)  评论(0编辑  收藏  举报