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.
こんにちは、問題の atm ではない二重リストに csv ファイルを読み込もうとしています。
私がやろうとしているのは、2 行の間にすべての sL 値を出力することです。つまり、sL [200] を sl [300] に出力したいのですが、これら 2 つの数値の間のすべての値に対して print sL を手動で入力する必要はありません。 200 から 300 まで個別に sL out と入力するのと同じです。
200 ~ 300 の範囲の特定の列の場合は、filter()関数を使用します。
filter()
new_array = filter(lambda x: x['column'] >= 200 or z['column'] <= 300, sl)
sed -n 200,300p、おそらく、200 から 300 を含む。排他的か何かの場合、数値を±1調整しますか?
sed -n 200,300p