我想从用户那里获取输入,以便在熊猫中显示多个但特定的列。
一种方法是使用.format()方法
enter code here
clmns = []
nclmns = int(input("No. of columns u wanna print: "))
for i in range(nclmns):
x=input("Column {}:".format(i+1))
clmns.append(x)
clmns = ['Class Roll', 'Percentage']
condition = sheet[['{}'.format(clmns[0]),'{}'.format(clmns[1])]]
职业掷骰正常% 1 63.00 2 80.36 3 73.20 6 75.30 7 80.54
因此,我必须明确地将条件变量限制为仅接受两列。
但是我想允许用户输入尽可能多的否。他想要的列数并打印那些列。
我该怎么办?