2025-09-10:仓库迁移

This commit is contained in:
2025-09-10 16:12:45 +08:00
parent e0e49b0ac9
commit 3130e336a1
146 changed files with 4066 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import sys
if __name__ == "__main__":
# 默认情况下,文件名是根据系统编码来进行编码的
print(sys.getdefaultencoding())
# 如果你想要无视这种编码规则,可以使用字节串来指定文件名
with open(b'test.txt', 'w') as f:
print(f.read())