python自带函数——文件读取
提问人:杨紫红发布时间:2020-11-18
>>> test_file = open('c:\\test.txt')
>>> text = test_file.read()
>>> print(text)
文件内容xxxxxxxxx
继续查找其他问题的答案?
相关视频回答
回复(0)
>>> test_file = open('c:\\test.txt')
>>> text = test_file.read()
>>> print(text)
文件内容xxxxxxxxx
点击加载更多评论>>