#coding=utf-8 list=[] for i in range(1,101): list.append(i) # print(list) tempList=[] newList=[] while True: num=0 for temp in list: tempList.append(temp) num+=1 if num==3: newList.append(tempList) tempList=[] num=0 continue if temp==100: newList.app…
python列表和字符串的三种逆序遍历方式 列表的逆序遍历 a = [1,3,6,8,9] print("通过下标逆序遍历1:") for i in a[::-1]: print(i, end=" ") print("\n通过下标逆序遍历2:") for i in range(len(a)-1,-1,-1): print(a[i], end=" ") print("\n通过reversed逆序遍历:") f…
一:文件的多种读写方式 主方式:w r a 从方式:t b + 了解方式:x u 1)按t(按照字符进行操作): with open("data_1.txt","wt",encoding="utf-8") as f1: f1.write("你好,世界!") #with open......as用于代替close()完成对打开的文件的释放 with open("data_1.txt&qu…
一.字符串 字符串也可以用下标取值.切片.for循环.len()取长度以及 in 和 not in 来进行操作. 但字符串是不可变的,不能被更改.只能构造一个“新的”字符串来存取你想要修改后的数据. 二.元组 元组与列表几乎一样,但是元组输入时使用小括号并且元组和字符串一样,不可变. 如果元组中只有一个值,你可以在括号内该值的后面跟上一个逗号,表明这种情况.否则,Python将认为你只是在括号内输入了一个值. #列表最后也可以是逗号 三.引用 列表赋给一个变量时,实际上是将列表的“引用”赋给了该…