def move(n, a, b, c):
if n==2:
print a,'-->',b
print a,'-->',c
print b,'-->',c
if n>2:
move(n-1, a, c, b)
print a,'-->',c
move(n-1, b, a, c)
move(4, 'A', 'B', 'C')
看了大家的发现自己的是按照他叙述写的。。。。我写的好麻烦。。。
if n==2:
print a,'-->',b
print a,'-->',c
print b,'-->',c
if n>2:
move(n-1, a, c, b)
print a,'-->',c
move(n-1, b, a, c)
move(4, 'A', 'B', 'C')
看了大家的发现自己的是按照他叙述写的。。。。我写的好麻烦。。。
2016-02-22
print [int(x)*100 + int(y)*10 + int(x) for x in range(1,10) for y in range(0,10)]
2016-02-22
两个循环就可以了。
print [n1 *100 + n2 * 10 + n1 for n1 in range(1,10) for n2 in range(10)]
print [n1 *100 + n2 * 10 + n1 for n1 in range(1,10) for n2 in range(10)]
2016-02-22
print 45678 + 0x12fd2
print 'Learn Python in imooc'
print 100 < 99
print 0xff == 255
print 'Learn Python in imooc'
print 100 < 99
print 0xff == 255
2016-02-22
# -*- coding: utf-8 -*-
print '''静夜思
床前明月光,
疑是地上霜。
举头望明月,
低头思故乡。'''
print '''静夜思
床前明月光,
疑是地上霜。
举头望明月,
低头思故乡。'''
2016-02-22
x1 = 1
d = 3
n = 100
x100 = x1 + ( n - 1) * d
s = ( x1 + x100) * n / 2
print s
d = 3
n = 100
x100 = x1 + ( n - 1) * d
s = ( x1 + x100) * n / 2
print s
2016-02-22
sum = 0
x = 0
while True:
x = x + 1
if x > 100:
break
if x % 2 == 0:
continue
sum = sum + x
print sum
x = 0
while True:
x = x + 1
if x > 100:
break
if x % 2 == 0:
continue
sum = sum + x
print sum
2016-02-21
x = 10
while True:
if((x/10) < (x%10)):
print x
x = x + 1
if(x > 100):
break
穷举法
while True:
if((x/10) < (x%10)):
print x
x = x + 1
if(x > 100):
break
穷举法
2016-02-21
L = ['Adam', 'Lisa', 'Paul', 'Bart']
L.pop(3)
L.pop(2)
print L
L.pop(3)
L.pop(2)
print L
2016-02-21
无厘头的len,range....还有汉诺塔算法,这根本就不是入门了。麻烦课程整理的时候细心一点,不要在初级课程插入一些奇怪的东西。
2016-02-21