【python】极简教程14-文件

14.1 读取文件

使用 open 函数打开文件,并通过 read 方法读取文件内容。常见的读取模式是 'r'(读取模式)。

示例代码:

fin = open('example.txt', 'r')
content = fin.read()
print(</

猜你喜欢

转载自blog.csdn.net/weixin_41697242/article/details/143288046