表达式
是将不同数据(包括变量、函数)用运算符按一定规则连接起来的一种式子
>>> 5.6/2
2.8
>>> 5.6//2
2.0
>>> 5.6//2.8
2.0
>>> 3**2
9
>>> 2**3
8
>>> 1<2
True
>>> 2<1
False
>>> 1!=2
True
>>> 1==1
True
>>> 1==1.0
True
由上到下是由低到高
1 #!/usr/bin/python
2
3 a = int(raw_input("please input num1:"))
4 #raw_input() return str type!
5 b = int(raw_input("num2:"))
6
7 print a + b
8 print a - b
9 print a * b
10 print a / b
运行结果:
~ python computer.py
please input num1:12
num2:2
14
10
24
6
版权声明:本文为博主原创文章,未经博主允许不得转载。
原文地址:http://blog.csdn.net/chenguibao/article/details/47124491