Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
read()、readline()および以外readlines()に、ファイルの内容を読み込んで文字列として保存する方法はありますか?
read()
readline()
readlines()
あなたの要件は奇妙ですが、ここにあります:
f = open('myfile.txt', 'r') file_as_string = ''.join([line for line in f]) f.close();