sum = 0
x = 1
while (x<100):
if x%2:
sum+=x
x = x + 1
print sum
x = 1
while (x<100):
if x%2:
sum+=x
x = x + 1
print sum
2018-07-03
不自己动手敲代码真的不能懂这个切片的意思,我自己理解的
L=rang(1,101),L[a:b:c]意思是:
listL为1到100,而L[a:b:c]的a与b是范围,即半开半闭[a,b)的范围,而c为每隔c的个数取第一个,所以L[::3]的意思是从索引值第一个(0)到最后一个(99),每隔3个数取一个数,即0,3,6,9,12...所以在L中3的倍数是L[2::3],即索引值2到99中每3个取第一个,L[2]=3为初值
L=rang(1,101),L[a:b:c]意思是:
listL为1到100,而L[a:b:c]的a与b是范围,即半开半闭[a,b)的范围,而c为每隔c的个数取第一个,所以L[::3]的意思是从索引值第一个(0)到最后一个(99),每隔3个数取一个数,即0,3,6,9,12...所以在L中3的倍数是L[2::3],即索引值2到99中每3个取第一个,L[2]=3为初值
2018-07-03
def move(n, a, b, c): if n == 1:print a,'-->',c else:move(n-1, a, c, b)move(1, a, b, c)move(n-1, b, a, c)move(4, 'a', 'b', 'c')
本来不懂汉诺塔,自己敲敲代码琢磨琢磨,才懂了。
就是有❤n层,如果n=1,那么直接a-->c;如果n>1,那么需要将n-1层通过c,从a移到b,就是move(n-1, a, c, b),那么当n-1移到b之后,那么a就只有1层,即move(1, a, b, c),然后n-1层已经移交到b,b有n-1层,如果n=1。。。从❤重复开始。
本来不懂汉诺塔,自己敲敲代码琢磨琢磨,才懂了。
就是有❤n层,如果n=1,那么直接a-->c;如果n>1,那么需要将n-1层通过c,从a移到b,就是move(n-1, a, c, b),那么当n-1移到b之后,那么a就只有1层,即move(1, a, b, c),然后n-1层已经移交到b,b有n-1层,如果n=1。。。从❤重复开始。
2018-07-03
['Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec']
背了一波英语月份、、、
背了一波英语月份、、、
2018-07-03
sum = 0
x = 1
n = 1
while True:
sum += x
x *= 2
n += 1
if n > 20:
break
print sum
x = 1
n = 1
while True:
sum += x
x *= 2
n += 1
if n > 20:
break
print sum
2018-07-03
# -*- coding: utf-8 -*
import math
def quadratic_equation(a, b, c):
d = b*b - 4*a*c
if a != 0:
if d >= 0:
t = math.sqrt(d)
return (-b + t)/(2*a),(-b-t)/(2*a)
else:
return '没有实数根'
else:
return 'a为0,不是二元方程'
import math
def quadratic_equation(a, b, c):
d = b*b - 4*a*c
if a != 0:
if d >= 0:
t = math.sqrt(d)
return (-b + t)/(2*a),(-b-t)/(2*a)
else:
return '没有实数根'
else:
return 'a为0,不是二元方程'
2018-07-03
s = set(['Adam', 'Lisa', 'Paul'])
L = ['Adam', 'Lisa', 'Bart', 'Paul']
for i in L:
if i in s:
s.remove(i)
else:
s.add(i)
print s
L = ['Adam', 'Lisa', 'Bart', 'Paul']
for i in L:
if i in s:
s.remove(i)
else:
s.add(i)
print s
2018-07-02
# a or world之间 默认a为有值,所以为true,world为false,或运算中优先true(a="python")
a = 'python'
print 'hello,', a or 'world'
# b or world之间b是空值,空值默认为false,world就被认为是true,或运算中取值true(world)
b = ''
print 'hello,', b or 'world'
a = 'python'
print 'hello,', a or 'world'
# b or world之间b是空值,空值默认为false,world就被认为是true,或运算中取值true(world)
b = ''
print 'hello,', b or 'world'
2018-07-02
Python中应该也是有限计算乘除法,然后是加减法。
根据计算的有限特点可以看出:
第一步:10/4等于2(而非2.5)因为是整数运算。
第二步:2.5+得到的运算结果2,所以是4.5
其实要解决这个问题就要解决第一个步骤中10/4等于2.5,其中10或4(或两个数)之中增加一个浮点,比如10.0/4或10/4.0(当然10.0/4.0也可以)。
根据计算的有限特点可以看出:
第一步:10/4等于2(而非2.5)因为是整数运算。
第二步:2.5+得到的运算结果2,所以是4.5
其实要解决这个问题就要解决第一个步骤中10/4等于2.5,其中10或4(或两个数)之中增加一个浮点,比如10.0/4或10/4.0(当然10.0/4.0也可以)。
2018-07-02
print r'''"To be,or not to be":that is the question.
Whether it's nobler in the mind to suffer.'''
多个空格都不让
Whether it's nobler in the mind to suffer.'''
多个空格都不让
2018-07-02