期末考试复习 补修的python跟着大一一起学,考试肯定不会出难,于是就敲了一些代码,把他们放到博客上,来记录一下 代码都是一段一段的,且python代码不是很多,所以我都写到了一个文件里,作为练习 # python期末考试编程题 # 往文件写东西 # fp = open(r'file/test.txt','a+') # print('hellow',file=fp) # fp.close() # x = list(range(500)) # print(x) # for item in x:…