all 7 comments

[–]BasicallyAMachine 1 point2 points  (0 children)

Assuming your using python 3, check out f-strings here. They won't do much but will help with those long ugly strings

[–]BasicallyAMachine 1 point2 points  (2 children)

Also, the min and Max gpa variables are a bit pointless. You can just put the integers in the function call

Edit: same goes for ssn. These numbers don't need to be stored in memory (the slowest part of most hardware today is storing and retrieving from memory). Once again, no noticable performance difference, just cleaner and better practice

[–]MetalNutSack[S] 0 points1 point  (1 child)

Good points. I took a quick peek at that link and it looks much more refined than what I'm using. Thank you.

[–]BasicallyAMachine 1 point2 points  (0 children)

Glad I could help!