ファイルを読み込んで、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
関連記事
大括弧を表示するには、\left[ または \right] を使う。 例 $\left[ \left( \frac{x}{y} \right) \right]$ 結果 片方だけの大括弧 片方だけのカッ …
文章中でインテグラル(積分記号)を大きくするには、\displaystyle と書けばよい。 例 usual $\int \frac{ax+b}{cx+d} dx$display style $\di …
テキストを \flushright で囲めば良い。 例 \begin{flushright} Lorem, ipsum dolor sit amet consectetur adipisicing e …
python3 でリストの偶数番目・奇数番目の項目を出力する
リストに対して、::2 を使えば良い。 例 list1 = [‘日’,’月’,’火’,’水’,’木’,’金’,’土’] list2 = list1[::2] list3 = list1[1::2] p …
python3 でカンマの入った数値の文字列を数値に変換する方法
replace と int 変換を組み合わせる。 例 str1 = ‘1,234,567’ int1 = int(str1.replace(‘,’,”)) print(int1) 結果 123456 …
2023/01/18
matplotlib のグラフ作成と gnuplot との対応 比較
2022/10/14
pythonで配列(リスト)の、ある要素がわかっているときにその次の要素を取得する方法。