笨办法学Python习题11 提问
程序员文章站
2022-06-15 19:08:27
...
前面的学习中大多是直接打印的习题,从这一个习题开始,渐渐接触了输入。还是老套路,先来一段代码:
print "How old are you",
age = raw_input()
print "How tall are you",
height = raw_input()
print "How much dou you weigh",
weight = raw_input()
print"So,you're %r old, %r tall and %r heavy." %(age,height,weight)
How old are you 28
How tall are you 175cm
How much dou you weigh 65kg
So,you're '28' old, '175cm' tall and '65kg' heavy.
1,python input() 相等于 eval(raw_input(prompt)) ,用来获取控制台的输入。
raw_input() 将所有输入作为字符串看待,返回字符串类型。而 input() 在对待纯数字输入时具有自己的特性,它返回所输入的数字的类型( int, float )。
2,input() 和 raw_input() 这两个函数均能接收 字符串 ,但 raw_input() 直接读取控制台的输入(任何类型的输入它都可以接收)。而对于 input() ,它希望能够读取一个合法的 python 表达式,即你输入字符串的时候必须使用引号将它括起来,否则它会引发一个 SyntaxError 。除非对 input() 有特别需要,否则一般情况下荐使用 raw_input() 来与用户交互。
3,意:python3 里 input() 默认接收到的是 str 类型。
推荐阅读
-
笨办法学Python - 习题5: More Variables and Printing
-
笨办法学Python - 习题8-10: Printing & Printing, Printing
-
笨办法学Python - 习题3: Numbers and Math
-
笨办法学python3 学习笔记 习题26
-
笨办法学python3 学习笔记 习题25
-
笨办法学python3 笔记 习题24
-
《笨办法学Python》习题24、25
-
Python自学之旅 #新手 #MacBook #《“笨办法”学Python》#第四章:言归正传讲Python:Mac系统的终端Terminal命令行快速入门之较复杂的命令
-
笨办法学Python3 习题47-48
-
笨办法学Python3 习题18和19