目前遇到运行此代码的问题:
df = pandas.DataFrame.from_items(solutionDict.items(),orient='index', columns=['Room','Teacher','Time','Students'])
它给了我这个输出。
Room Teacher Time Students
1 1 5 1 [14, 21, 31, 43, 65, 71, 2, 3, 19, 49, 58, 64,...
2 8 9 4 [4, 35, 45, 94, 18, 86, 99, 36, 56, 80]
3 8 3 1 [54, 60, 17, 33, 56, 67, 82, 95, 25, 30, 97, 1...
4 4 7 7 [62, 88, 92, 13, 37, 46, 59, 66, 71, 86, 89, 1...
5 4 8 5 [18, 33, 46, 63, 84, 100, 20, 23, 29, 53, 5, 7...
我试图找出如何从列表1的末尾删除...以便它看起来更像列表2.我尝试使用
pandas.set_option('display.max_columns', None)
但我认为这是我正在改变的错误选择。我之前没有使用过熊猫,我只是有点困惑。