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

格式化输出

时间:2017-11-27 00:12:09      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:占位符   字符串   输入   name   格式化输出   pre   字符   nbsp   color   

#%s字符串占位符:可以接收字符串,也可接收数字
print(My name is %s,my age is %s %(egon,18))
#%d数字占位符:只能接收数字
print(My name is %s,my age is %d %(egon,18))
print(My name is %s,my age is %d %(egon,18)) #报错

#接收用户输入,打印成指定格式
name=input(your name: )
age=input(your age: ) #用户输入18,会存成字符串18,无法传给%d

print(My name is %s,my age is %s %(name,age))

#注意:
#print(‘My name is %s,my age is %d‘ %(name,age)) #age为字符串类型,无法传给%d,所以会报错

 

格式化输出

标签:占位符   字符串   输入   name   格式化输出   pre   字符   nbsp   color   

原文地址:http://www.cnblogs.com/ricemi/p/7900828.html

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