黃哥出題了,訓練Python初學者循環的基本功
02-04
有二個遞增的list
list1 = [3, 7, 8, 9, 12]
list2 = [5, 6, 10, 13, 25, 30]
合併成一個新的遞增list
list3 = [3, 5, 6, 7, 8, 9, 10, 12, 13, 25, 30]
不能寫這樣的代碼,要求用循環來寫
In [5]: list1 = [3, 7, 8, 9, 12]n ...: list2 = [5, 6, 10, 13, 25, 30]n ...:nnIn [6]: sorted(list1+list2)nOut[6]: [3, 5, 6, 7, 8, 9, 10, 12, 13, 25, 30]n
部分免費python免費視頻nhttps://github.com/pythonpeixun/article/blob/master/python_shiping.md
216小時學會pythonnhttps://github.com/pythonpeixun/article/blob/master/python/hours_216.m
推薦閱讀:
※為什麼Python裡面的locals()是只讀的
※實戰 | 讓機器人替你聊天,還不被人看出破綻?來,手把手教你訓練一個克隆版的你
※發布Python桌面應用程序(入門)
TAG:Python |