PySide2 (Qt for Python) で複数アイテムを表示する際には、List / Tree / Table のそれぞれに対して Widget 系と View 系の二種類のクラスが用意されていますが、ごく簡単なプログラムでない限り、Model / View に基づいた QListView / QTreeView / QTableView を使うのが良いようです。
# Ref: http://doc.qt.io/qt-5/modelview.html#2-1-a-read-only-table # The mainloop of the application. The event handling starts from this point. # The exec_() method ...