user outepu

This commit is contained in:
tstst334
2019-08-02 14:10:46 +02:00
parent 6577cfc6b8
commit 614e24fad1
2 changed files with 10 additions and 6 deletions
+7 -3
View File
@@ -33,6 +33,10 @@ def user_input():
return "input", "grade", subject, category, grade, grade_name
def user_output(i):
# just filled with some standard output, has to be filled further
print(i)
def user_output(subject, categories, average):
print("\n\n In the subject [] are the following categories:".format(subject))
for counter, category in enumerate(categories):
print("The average in [] is [] with these grades:".format(category, average[counter]))
for grade in category:
print(grade)
print("\n")