First of all, hello everybody :)
I'm startint to learn Python and i have question about keyboard input.
e.g. I want to enter grades (e.g. 10, 4, 4, 2) and calculate average.
So i guess it should be:
grades = raw_input("Enter grades:")
print "Grades:", grades
And finaly - question.. How do I get those entered numbers for further calculations?
Thanks in advance.