09-08-周一_15-20-17

This commit is contained in:
2025-09-08 15:20:17 +08:00
parent bca16b90d2
commit b21b9a72f3

View File

@@ -23,8 +23,8 @@ f.close()
```python
f.close()
# 回收操作系统级打开的文件
def f
# 回收操作系统级打开的文件,系统级别不回收会导致文件一直被占用,如果程序以外崩溃,会导致
del f
# 回收应用程序级的变量
```