【发布时间】:2017-08-21 01:08:27
【问题描述】:
目前我有一个 csv 文件
with open('MY CSV FILE ', 'r') as csv:
line = csv.reader(csvf, delimiter=' ', quotechar='|')
for row in line:
print ",".join(row)
#IF I DO print(account) it will print the accounts into the SHELL,
如何在 pyqt4 中将每一行放入一个表中?以某种方式使用 PyQt.QLabel?关于创建表的文档对我来说不是很清楚。
【问题讨论】: