首页 > 其他 > 详细

读写TXT

时间:2021-06-24 15:32:48      阅读:11      评论:0      收藏:0      [点我收藏+]

import random
import re

# list1 = [
# ‘a‘, ‘1‘, ‘A‘,
# ‘b‘, ‘2‘, ‘B‘,
# ‘c‘, ‘3‘, ‘C‘,
# ‘d‘, ‘4‘, ‘D‘,
# ]
‘‘‘
# 循环写入
for i in range(100):
# a是可重复。w是覆盖
with open(‘txt.txt‘, ‘a‘)as f:
# \n换行
f.writelines(str(i)+‘\n‘)
‘‘‘

‘‘‘
for item in list1:
with open(‘txt.txt‘, ‘a‘) as f:
f.writelines(‘\n‘ + item)
‘‘‘
‘‘‘
# 循环读取
for line in open(‘txt.txt‘):
# 去除首尾空格
print(line.strip())
# 去除首尾0
print(line.strip(‘0‘))
‘‘‘


def proxy():
list1 = []
for lines in open(‘txt.txt‘):
lines = lines.strip()
list1.append(lines)
proxy = random.choice(list1)
print(proxy)


if __name__ == ‘__main__‘:
proxy()

读写TXT

原文:https://www.cnblogs.com/wolvies/p/14926280.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!