|
发表于 2023-8-7 21:46:35
|
显示全部楼层
问答题:
0. 不会,会创建键入名称的文件。
1. 有,使用flush()方法
2. 读取此行中的3个字符。
4. print()方法会在每次打印后换行
5. 没有使用反斜杠对路径分隔符进行转义
6. 及时备份文件内容
7. 可以
8. 负责指向文件的当前位置,每读取一个字符后指向下一个位置
9. End Of File 文件末尾
10. 使用tell()方法
动动手:
0.
f = open('FishC.txt', 'r+')
f.seek(10)
t = f.read(5)
fd = open('FishD.txt', 'w')
fd.write(t)
f.close()
fd.close()
1.
f = open('FishC.txt', 'r+')
f.truncate(15)
f.close()
2.
f = open('open_myself.py', 'r+')
f.seek(0)
f.read()
f.close()
3.
fpic = open('test.jpg', 'a', encoding='utf-8', errors='ignore')
fzip = open('target.zip', 'r', encoding='utf-8', errors='ignore')
t = fzip.read()
fpic.write(t)
fzip.close()
fpic.close()
|
|