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

数据类型

时间:2015-07-17 20:56:19      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:

看来,我看的教程版本太低了,很多东西都值得推敲。除了小坑print(""),又出现了小坑2input()......

>>> x=input("x:")
x:2
>>> y=input("y:")
y:2
>>> print("x*y")
x*y
>>> print(x*y)
Traceback (most recent call last):
  File "<pyshell#7>", line 1, in <module>
    print(x*y)
TypeError: can‘t multiply sequence by non-int of type ‘str‘
>>> x
‘2‘
>>> y
‘2‘
>>> int(x)
2
>>> int(y)
2
>>> print(int(x)*int(y))
4
>>>

数据类型

标签:

原文地址:http://www.cnblogs.com/liuhuan2368935760/p/4655566.html

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