def tell_grader(fag, bsc, msc): poeng = 0 if fag == bsc: poeng+=1 if fag == msc: poeng+=1 return poeng print(tell_grader("informatikk","informatikk","informatikk")) print(tell_grader("historie", "informatikk","informatikk"))