• + 0 comments
    long=len(student_marks[query_name])
    total=sum((list(map(float, student_marks[query_name]))))
    print(f"{(total/long):.2f}")
    

    this is how i did it :)