Python 核心编程 第二章 练习

2-1.

apple = 2
banana = 3
fish = 4
pineapple = 5

print "Tiger has got %d pineapple." % pineapple
print "Cat has got %d fish." % fish
print "Monkey has got %d banana." % banana
print "Bird has got %d apple" % apple


2-2.

#!/usr/bin/env python
print 1 + 2 * 4


2-3.

a = 60
b = 13

print 'a + b = %d' % (a + b)
print 'a - b = %d' % (a - b)
print 'a * b = %d' % (a * b)
print 'a / b = %d' % (a / b)
print 'a ** b = %d' % (a ** b)
print (a % b)


2-4.

(a)
age = raw_input("How old are you? >>")
print "You are %s years old." % age

(b)
age = raw_input("How old are you? >>")
print "You are %d years old." % (int(age) * 2)


2-5.

(a)
b = 0
while b < 11:
    print "num: %d" % b
    b += 1

(b)
for a in range(11):
    print "num: %d" % a



2-6.

(a)
x = 5

if x > 0:
    print '%d is positive number.' % x

elif x == 0:
    print '%d is zero.' % x
    
else:
    print '%d is minus.' % x
    

(b)
x = raw_input('Enter you number. >>')
y = int(x)

if y > 0:
    print '%s is positive number.' % x

elif y == 0:
    print '%s is zero.' % x

else:
    print '%s is minus.' % x



2-7.

while循环:
s = raw_input('>>>')
n = 0
while n < len(s):
    print(s[n])
    n += 1
    
for循环:
s = raw_input('>>>')
for a in s:
    print a








































你可能感兴趣的:(Python 核心编程 第二章 练习)