博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
日常练习 1.0
阅读量:4881 次
发布时间:2019-06-11

本文共 890 字,大约阅读时间需要 2 分钟。

#实时打印输出日志文件 import time with open('access.log', 'rb') as f:     f.seek(0, 2)     while True:         line = f.readline()         if line:             print(line.decode('utf-8'))         else:             time.sleep(0.05) # #截断文件 with  open('test.txt','a',encoding='utf-8') as f1:      f1.truncate(3)
# 修改文件内容 import os with open('test.txt','r',encoding='utf-8') as read_file,open('.test.txt.swap','w',encoding='utf-8') as write_file:     for line in read_file:         if 'anthony' in line:             line = line.replace('anthony','nb')         write_file.write(line) os.remove('test.txt') os.rename('.test.txt.swap','test.txt') # 禁止显示非法搜索内容
li = ['民谣','电音','纯音乐','古风'] l1 = [] comment = input('enter the world,please:').strip() for i in li:     if i in comment:         comment = i.replace(i,'*'*len(i)) l1.append(comment) print(*l1)
 

转载于:https://www.cnblogs.com/ipyanthony/p/9088373.html

你可能感兴趣的文章
window.frameElement的使用
查看>>
nl命令
查看>>
如何使用jQuery $.post() 方法实现前后台数据传递
查看>>
Using Flash Builder with Flash Professional
查看>>
jsp/post中文乱码问题
查看>>
C# 插入或删除word分页符
查看>>
数据库数据的查询----连接查询
查看>>
找不到可安装的ISAM ,asp.net读取数据丢失,解决的一列里有字符与数字的
查看>>
Java学习笔记三(对象的基本思想一)
查看>>
Java程序(文件操作)
查看>>
KMP算法 最小循环节 最大重复次数
查看>>
Proving Equivalences (强连通,缩点)
查看>>
Period (KMP算法 最小循环节 最大重复次数)
查看>>
sgu 103. Traffic Lights
查看>>
poj 3621 Sightseeing Cows
查看>>
hdu 3666 THE MATRIX PROBLEM
查看>>
TopCoder SRM 176 Deranged
查看>>
Javascript中数组与字典(即map)的使用
查看>>
C++不完整的类型
查看>>
memcached(十三)注意事项
查看>>