码迷,mamicode.com
首页 > 编程语言 > 详细

python 基本语法回顾二

时间:2017-03-28 22:53:10      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:weight   显示   ack   结束   这一   基本语法   com   height   字符   

1
2
3
4
5
6
7
8
9
print "How old are you?",
age = raw_input()
print "How tall are you?",
height = raw_input()
print "How much do you weigh?",
weight = raw_input()
print "So, you‘re %r old, %r tall and %r heavy." % (
age, height, weight)
Note
注意到我在每行 print 后面加了个逗号 (comma) , 了吧?这样的话 print 就不会输出新行符而结束
这一行跑到下一行去了。

记住  %r  是  debug  专用,它显示的是原始表示出来的字符,而  %s  是为了显示给用户

 

python 基本语法回顾二

标签:weight   显示   ack   结束   这一   基本语法   com   height   字符   

原文地址:http://www.cnblogs.com/zhang66668888/p/6637429.html

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