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

2018年8月12日

# ファイルをオープン
empdetail= open(“employee.txt", “r")

# すべての内容を読み込む
cft = empdetail.read()

# すべての内容を表示
print cft

# ファイルをクローズ
empdetail.close()

Python

Posted by arkgame