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

pytony格式化输出-占位符

时间:2018-01-13 20:40:02      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:pos   col   odi   --   body   div   浮点数   float   style   

1. %s  s = string  字符串

2. %d  d = digit  整数

3. %f  f = float  浮点数

#!/usr/bin/env python
#_*_coding:utf-8_*_
#date: 2018/1/13
#_author_="dingkai"

name = input("your name:")

age = input("your age:")
if age.isdigit():   #像不像数字
    int(age)
else:
    print(age must be int!)
    exit(1) #退出程序

salary = input("your salary:")
if salary.isdigit():  #像不像数字
    int(salary)
else:
    print(salary must be int!)
    exit(1) #退出程序

msg_info = ‘‘‘
------info of %s ------
name:   %s
age:    %s
salary: %s
------end------
‘‘‘ %(name,name,age,salary)

print(msg_info)

 

pytony格式化输出-占位符

标签:pos   col   odi   --   body   div   浮点数   float   style   

原文地址:https://www.cnblogs.com/dingkailinux/p/8279999.html

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