0
How does python choose the highest score from a list?
Example: Games = [4,7,3,9] Highestscore = max(Games) wouldnt work.
3 odpowiedzi
+ 4
games = [6,5,11,3]
Highestscore = max(games)
print(Highestscore)
+ 3
Games = [4,7,3,9]
Highestscore = max(Games)
print(Highestscore)
works for me
+ 1
Abu Habban Tnx i printed (Games) out by mistake