首页 > 代码库 > python格式化输出

python格式化输出

#vim raw_input.py

#!/usr/bin/python


name = raw_input(‘Please input your name : ‘)

age = input(‘Please input your age : ‘)

sex = raw_input(‘Please input your sex : ‘)

message = ‘‘‘Message :

\tname : %s

\tage  : %d

\tsex  : %s

‘‘‘ % (name,age,sex)



#print message



本文出自 “Jeff” 博客,请务必保留此出处http://zhangxz.blog.51cto.com/5490116/1559381

python格式化输出