「python入門」readlines()のサンプル
サンプルコード:
with open(“cft_folder/cft_kdf.txt", “r", encoding=’utf-8) as mb:
d = mb.readlines()
print(d)
Coding Changes the World
サンプルコード:
with open(“cft_folder/cft_kdf.txt", “r", encoding=’utf-8) as mb:
d = mb.readlines()
print(d)