Skip to content

A simple grade calculator using inputs learned in Python.

Notifications You must be signed in to change notification settings

Dilsinnam/gradeCalculator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

Grade Calculator

A very simple grade calculator made with Python, as in intro to COP3502. Syllabus grade scale has been updated as of 1/16/2024, 7:57 PM.

Result

assignment = float(input("Please enter your assignment grade: "))
exam = float(input("Please enter your exam grade: "))
lab = float(input("Please enter your lab grade: "))
etc, you get the idea

#Combining the scores
totalScore = assignment*0.16 + exam*0.30 + lab*0.16 + quiz*0.16 + gProject*0.10 + zyBooks*0.2 + lecture*0.2

#The final score
print("Your score for this semester is:", totalScore)

About

A simple grade calculator using inputs learned in Python.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages