• + 0 comments

    I'm printing the expected output using following code but the test does't pass

    marks = student_marks.get(query_name);
    total = 0;
    for i in marks : 
        total = total + i;
    print( f'{total/3 : .2f}')
    

    Edit: nvm, removing the spaces in print to print( f'{total/3:.2f}') fixed it. The input/expected output UI format doesn't display these spaces though