二重のリストをフラットにするマトリクス状のデータを1行の単純なリストに平坦化するときにもリスト内包表記が使えます.spam.py data = [[1, 2, 3], [4, 5, 6], [7, 8, 9]] print(data) flat = [flatten for inner in data for flatten in inner] print(flat) ...
いいね 💚、フォローをお願いします。 Thank you very much for reading to the last sentence. Please press the like icon 💚 and follow me for your happy life.