Python Forum
Grade System Help - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: Grade System Help (/thread-5438.html)



Grade System Help - jamisontboyd - Oct-03-2017

Hello, fellow Python programmers!

I'm new to Python and programming, as I'm a freshmen in College rn. In my class, we went over how to assign a letter grade to a numerical input from a user. I know how to do all that jazz. But I want to take it a step further and go out of my class to create a whole system for a class. Example: Store the names of however many students I gave then assign each student say 5 classes(all the same 5 for rn) and give them a numerical and letter grade. I know I can do this with an Excel Spreadsheet, but I wanted to see if there was a way I could do this on Python to show my professor and maybe impress him. If you have any suggestions, it would be greatly appreciated if you put them in the comments below. Thank you for your time.


RE: Grade System Help - ichabod801 - Oct-03-2017

Have you gone over dictionaries and lists yet?


RE: Grade System Help - jamisontboyd - Oct-03-2017

@ichabod801
We sort of gone over lists, but not Dictionaries or Arrays. I have used a simple list before to find the greatest number out of a list and then it displays the greatest number. So not in class. I know very little about lists.


RE: Grade System Help - ichabod801 - Oct-03-2017

You need to know dictionaries and lists to do what you want to do, at least if you want to impress your professor. There are tutorials on them in the tutorials section of these forums, and you can find lots more by searching on 'python list tutorial' or 'python dictionary tutorial'. I would read some of those, and if you're still not sure how to do it, come back and talk to us.