我是Python新手。我有一个包含2个PyQt5 Qlistviews(LV)的Python表单。有一个可用的和选定的列表视图。我可以加载可用的LV并查看它的内容。我可以检查要移动到所选LV的项目,按一个按钮然后项目移动但是它的文本在选定的LV中不可见。
cut -d, -f2-4,6-10 train.csv > newtrain.csv
答案 0 :(得分:0)
import pandas as pd
import numpy as np
np.random.seed(1)
# Python 2.7.12
# I am up to date on either pandas, and numpy versions.
print pd.__version__ # 0.23.0
print np.__version__ # 1.14.3
arr = np.random.randint(1, 16, 10).reshape(2, 5)
print arr
"""
[[ 6 12 13 9 10]
[12 6 1 1 2]]
"""
df = pd.DataFrame(arr)
print df
print 'df[4].dtypes = {}'.format(df[4].dtypes)
"""
0 1 2 3 4
0 6 12 13 9 10
1 12 6 1 1 2
df[4].dtypes = int32
"""
df.iloc[1, 4] = np.nan
print 'df[4].dtypes = {}'.format(df[4].dtypes)
# df[4].dtypes = float64
不能属于2个模型,因此如果要移动它,必须先使用QStandardItem
将其删除,然后将其插入新模型中。直接执行此操作会带来问题,因为要删除的行将更改takeRow()
,最好反向执行。
rowCount()