2021年12月8日
摘要: 内容概要 虚拟机和Linux系统的安装 内容详细 下载系统安装包软件 下载网址:https://developer.aliyun.com/mirror/ 下载链接:https://mirrors.aliyun.com/centos/7.9.2009/isos/x86_64/CentOS-7-x86_ 阅读全文
posted @ 2021-12-08 21:07 狼行千里吃肉 阅读(102) 评论(0) 推荐(0)

import time with open('a.txt', 'rb') as f: f.seek(0, 2) while True: line = f.readline() if len(line) == 0: # 没有内容 time.sleep(0.5) else: print(line.decode('utf-8'), end='')