Python学习随笔
CatherineHuangTT
这个作者很懒,什么都没留下…
展开
-
Python之if判断语句
x = int(input("Please ente an integer:"))#y = float(input("Please enter a float"))if x < 0 : x = 0 print("Negative changed to zero")elif x == 0 : print("zero") print('zero')elif原创 2017-11-30 20:08:39 · 474 阅读 · 0 评论 -
Python之for循环
#Python的for可以遍历 a list or a string#Measure some stringswords = ['happy', 'smile', 'sunshine']for word in words : print(word, len(word))"""result: happy 5 smile 5 sunshin原创 2017-11-30 21:25:22 · 620 阅读 · 0 评论 -
Python之range函数
""""如果你需要遍历序列数字,Python的内置函数可以帮你遍历序列数字"""for i in range(20) : print(i)"""result:01234从遍历的结果可以得出,range是 [ ) 的,遍历从0开始"""#range(遍历的起始数字,遍历的结束数字(不包括))for i in range(5,10) : print(i原创 2017-11-30 22:15:41 · 418 阅读 · 0 评论 -
Python之enumerate函数
seasons = ['Spring', 'Summer', 'Fall', 'Winter']li1 = list(enumerate(seasons))print(li1)li2 = list(enumerate(seasons, start=1))print(li2)"""result:[(0, 'Spring'), (1, 'Summer'), (2, 'Fall'), (3翻译 2017-11-30 22:28:37 · 294 阅读 · 0 评论 -
Python之break和continue
for n in range(2, 10): for x in range(2, n): if n % x == 0: #连接符用逗号和加号都可 print(n, 'equals', x, '*', x) break else: # loop fell throug翻译 2017-12-03 19:35:02 · 846 阅读 · 0 评论 -
Python之函数
def fib(n): #write Fibonacci series up to n #在Java和C语言中不能赋予两个不同的变量不同的值,但是在Python中是可以的 a,b = 0, 1 while a < n: print(a, end=', ') a, b = b, a+b print()#Now call the fun翻译 2017-12-04 23:23:56 · 455 阅读 · 0 评论