摘要: # 下午 # 嵌套 # l = [[]] l = [[],[]] l = [[1,2,3,4],[5,6,7,8]] print(l[0]) # [1, 2, 3, 4] l = [[1,2,3,4], [5,6,7,8]] print(l[1][2]) # 找第二行第三个元素 # 两个集合之和 l 阅读全文
posted @ 2020-07-10 19:42 XuanchenLi 阅读(443) 评论(0) 推荐(0) 编辑
摘要: # 九九乘法表 y = 1 while y <= 9: s = 1 while s <= y: print(f'{y}*{s} ={y*s} ', end=("")) s += 1 print() y+=1 # 1*1 =1 # 2*1 =2 2*2 =4 # 3*1 =3 3*2 =6 3*3 = 阅读全文
posted @ 2020-07-10 17:26 XuanchenLi 阅读(165) 评论(0) 推荐(0) 编辑
摘要: >>> import this The Zen of Python, by Tim Peters Beautiful is better than ugly. Explicit is better than implicit. Simple is better than complex. Compl 阅读全文
posted @ 2020-07-10 15:24 XuanchenLi 阅读(109) 评论(1) 推荐(0) 编辑
摘要: l = [88,97,79,89,76] l.sort() # 正序排序列表 l1 = list() # 赋值 l1 list() 空list for i in range(len(l)+1): # 把i 循环 len(l)+1 空出一个位置 l1.append(0) # 赋值 l1 list (0 阅读全文
posted @ 2020-07-10 11:51 XuanchenLi 阅读(192) 评论(1) 推荐(0) 编辑
摘要: # 二分查找l01 = [i for i in range(1,101)] start_index = 0 end_index = len(l01)-1 while start_index <= end_index: mid_index = (start_index + end_index) // 阅读全文
posted @ 2020-07-09 20:46 XuanchenLi 阅读(128) 评论(0) 推荐(0) 编辑
摘要: # 查找 排序 k1 = [11,22,1, 2, 3, 4, 5, 6, 7, 8, 9, ] k1.sorted() # 排序改变 k1[1] , k1[2] = k1[2] ,k1[1] print(k1) # [11, 1, 22, 2, 3, 4, 5, 6, 7, 8, 9] #运用变量 阅读全文
posted @ 2020-07-09 20:38 XuanchenLi 阅读(274) 评论(0) 推荐(0) 编辑
摘要: # 列表的其他操作 # count(方法统计某个元素在列表中出现的次数) index[]方法用于从列表中找出某个值第一个匹配项的索引位置 list查 中出现 sort(方法用于在原位置对列表进行排序) # count k1 = [1, 2, 3, 4, 5, 6, 3,3,7, 3, 8, 9,3 阅读全文
posted @ 2020-07-09 20:22 XuanchenLi 阅读(180) 评论(0) 推荐(0) 编辑
摘要: li = ['alex','wusir','ritian','barry','wenzhou'] re = 'alex' in li print(re) # True li = ['alex','wusir','ritian','barry','wenzhou'] re = 'alex' not i 阅读全文
posted @ 2020-07-09 20:11 XuanchenLi 阅读(160) 评论(0) 推荐(0) 编辑
摘要: # 改值 for index k1 = [1,2,3,4,5,6,7,8,9,] k1[0] = "nihao" # k1[需要更改的位置] = “需要更改的内容” print(k1) # ['nihao', 2, 3, 4, 5, 6, 7, 8, 9] # 按照切片改值(迭代着增加) k1 = 阅读全文
posted @ 2020-07-09 19:56 XuanchenLi 阅读(186) 评论(0) 推荐(0) 编辑
摘要: # pop 删除指定位置内容 k1 = [1,2,3,4,5,6,7,8,9,] k1.pop() # list 为空 默认 删除末尾 print(k1) # [1, 2, 3, 4, 5, 6, 7, 8] k1.pop(1) # 删除list 位置 1 的元素 print(k1) # [1, 3 阅读全文
posted @ 2020-07-09 19:53 XuanchenLi 阅读(189) 评论(0) 推荐(0) 编辑