0
How can i prompt user to input elements of a list in python and use the input to code?
the user input marks of ten students then the code categorises then in various grades.
1 ответ
0
you can always set a variable to the input and split it to get an array with all the marks
eg.
grades = intput('enter grades').split()