标签:占位符 字符串 输入 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