невозможно ввести как int, оно работает впервые, и я не могу запустить его снова.выдает ValueError: недопустимый литерал для int () с основанием 10: ''
nC=int(input("Enter the number of columns: "))
nameoFCol={}
if nC<1:
print("There must be atleast one column dude!!\nTry again!!")
else:
for i in range(nC):
key=input("Please enter the column name: ")
ListValues= [int(x) for x in input("Please enter the column
values\n").split(' ')]
nameoFCol[key] = ListValues
print (nameoFCol)