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.
gtk.TreeView を備えた GUI があり、gtk.ListStore を Python リストに変換したいのですが、どうすればよいですか?
ネストされたリスト内包表記を使用できます:
rowList = [column for column in [row for row in yourListStore]]