码迷,mamicode.com
首页 > 其他好文 > 详细

字符格式化输出,类型强制转换,点访问数据属性,

时间:2019-06-30 23:09:02      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:dig   put   --   数据   int   bsp   git   访问   nbsp   

name = input("Name:")

age = int(input("Age:"))       #类型强制转换

job = input("Job:")

salary = input("Salary:")

if salary.isdigit():                 #  .isdigit()用于判断数据是不是数字

    salary = int(salary)

msg = ‘‘‘

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

Name :%s

Age :%d

Job :%s

Salary : %f

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

‘‘‘ % (name,name,age,job,salary,age)   #字符格式化输出

print(msg)

字符格式化输出,类型强制转换,点访问数据属性,

标签:dig   put   --   数据   int   bsp   git   访问   nbsp   

原文地址:https://www.cnblogs.com/styleonme/p/11111668.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!