首页 > day1作业(格式化输出)

day1作业(格式化输出)

练习:用户输入姓名、年龄、工作、爱好 ,然后打印成以下格式

------------ info of Egon -----------

Name  : Egon

Age   : 22

Sex   : male

Job   : Teacher

------------- end -----------------



完成情况:



in_name=input('请输入您的姓名:')

in_age=input('请输入您的年龄:')

in_sex=input('您有什么爱好?')

in_job=input('你的工作是:')

msg='''

--------info of %s --------

Name : %s

Age : %s

Sex : %s

Job : %s

----------- end ----------

''' %(in_name,in_name,in_age,in_sex,in_job)

print(msg)

转载于:https://www.cnblogs.com/wu-jia/p/9335635.html

更多相关:

  •   语法 它通过{}和:来代替%。 “映射”示例 通过位置 In [1]: '{0},{1}'.format('kzc',18) Out[1]: 'kzc,18' In [2]: '{},{}'.format('kzc',18) Out[2]: 'kzc,18' In [3]: '{1},{0},{1}'.forma...

  • --------------------------------------------------------------------------------------- 本系列文章为《机器学习实战》学习笔记,内容整理自书本,网络以及自己的理解,如有错误欢迎指正。 源码在Python3.5上测试均通过,代码及数据 --> http...

  • 首先运行easy_install pymongo命令安装pymongo驱动。然后执行操作: 创建连接 1 In [1]: import pymongo 2 3 In [2]: connection = pymongo.Connection('localhost', 27017) 切换到数据库malware In [3]: db...

  • 代码: public class Person{public int ID { get; set; }public string Name { get; set; }public int Age { get; set; } }public class Dog{public int ID { get; set; }...

  • 故事背景:有一天,强哥整了个动态渲染的列表代码如下 app.component.html

          //为什么不直接就用input,那是因为这样会覆盖checkbox和radio的样式,我们这里只需要清除输入框的谷歌样式 input[type="text"], input[type="password"], input[type="number"], input[type="tel"]{box-shadow:...