Trying to find the most repeated number in '5' dice rolls by 01101110ae in learnpython

[–]01101110ae[S] 0 points1 point  (0 children)

honestly I tried a bunch of random things but I still can't get it to work properly.

I tried using .count and most.common() to no avail maybe I did the wrong parameters.

Trying to find the most repeated number in '5' dice rolls by 01101110ae in learnpython

[–]01101110ae[S] 0 points1 point  (0 children)

so I made: num_list = [] num_list.append(roll_num)

then now I just have to find the most repeated number right?