0
c=[int(input("Enter Column No: ")) for i in range(n)] , I want this to print "Enter Column No i"
I mean the value of i as it goes to 0 to 6 It would say Column 1 then Column 2 then Column 3 Need help
1 Réponse
+ 3
U can use loops and print it
Inside loop :
print("Colume",i)