「Python入門」ファイルの読み込みサンプル

2018年12月21日

サンプルコード:

with open('changfa.txt') as fileObj:
contents = fileObj.read()
print(type(contents))
print(contents)

Python

Posted by arkgame