举例讲解python中的算数运算符的用法

下表列出了所有python语言支持的算术运算符。假设变量a持有10和变量b持有20,则:

2015513115413853.jpg (585×361)

例子:

试试下面的例子就明白了所有的python编程语言提供了算术运算符:

#!/usr/bin/python

a = 21
b = 10
c = 0

c = a + b
print “line 1 – value of c is “, c

c = a – b
print “line 2 – value of c is “, c

c = a * b
print “line 3 – value of c is “, c

c = a / b
print “line 4 – value of c is “, c

c = a % b
print “line 5 – value of c is “, c

a = 2
b = 3
c = a**b
print “line 6 – value of c is “, c

a = 10
b = 5
c = a//b
print “line 7 – value of c is “, c

当执行上面的程序,它会产生以下结果:

line 1 – value of c is 31
line 2 – value of c is 11
line 3 – value of c is 210
line 4 – value of c is 2
line 5 – value of c is 1
line 6 – value of c is 8
line 7 – value of c is 2

发表评论