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.
私は Python の初心者で、学ぶために火の中に投げ込まれました。私は非常に新しく、答えを探し回っていますが、何をすべきかを理解するのに苦労しています。
csv ファイルを Python にロードする必要があります。5 列で 3000 行以上あります。列のリストとして各行が必要です。
誰かがこれを行うためのコーディングを教えてもらえますか?
x = """kissa,koira,kana cat,dog,chicken neko,inu,niwatori""" import csv list(csv.reader(x.splitlines())
結果:
[['kissa', 'koira', 'kana'], ['cat', 'dog', 'chicken'], ['neko', 'inu', 'niwatori']]