ファイルを読み込んで、1行目だけをコンソールに出力するには readlines() を使う。
例
f = open("data.txt") lines = f.readlines() print(lines[0][:-1]) f.close()
読み込みファイル
data.txt の中身は
1 2 3 4 5 6 7 8 9
結果
1 2 3
雑記
投稿日:
ファイルを読み込んで、1行目だけをコンソールに出力するには readlines() を使う。
f = open("data.txt") lines = f.readlines() print(lines[0][:-1]) f.close()
data.txt の中身は
1 2 3 4 5 6 7 8 9
1 2 3
執筆者:seyanen
関連記事
次のように入力すればよい。打ち消し線は、英語で strikethrough と呼ぶ。 例 \usepackage[normalem]{ulem} \begin{document} Good \sout …
文章が、ある文字列で始まるかどうかを判定するには startswith を使う。 例 str = “こんにちは。” print(str.startswith(‘こん’)) print(str.star …
data.txt からの入力から、「4 5 6」というデータがある行を削除して、output.txt に出力する。(データの各行の最後に \n があることに注意。) 例 f = open(‘data. …
2023/01/18
matplotlib のグラフ作成と gnuplot との対応 比較
2022/10/14
pythonで配列(リスト)の、ある要素がわかっているときにその次の要素を取得する方法。