「Python入門」ファイルの内容を読み込むサンプル
# ファイルをオープン
empdetail= open(“employee.txt", “r")
# すべての内容を読み込む
cft = empdetail.read()
# すべての内容を表示
print cft
# ファイルをクローズ
empdetail.close()
Coding Changes the World
# ファイルをオープン
empdetail= open(“employee.txt", “r")
# すべての内容を読み込む
cft = empdetail.read()
# すべての内容を表示
print cft
# ファイルをクローズ
empdetail.close()