python

##格式化输出
name = input("name:")
age = input("age:")
hometown = input("hometown:")
hobbies = input("hobbies:")

# f 点睛之笔
msg = f'''
-------------info of {name}---------------
Name :{name}
Age :{age}
Job :{hometown}
Hobbies :{hobbies}
----------------end-----------------------
'''
print(msg)

 

posted @ 2020-09-14 14:22  王小博  阅读(109)  评论(0编辑  收藏  举报