Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はしばらくこれにこだわっています。
list= [['a', 'b', 'c', 'd'], ['a', 'a', 'b', 'c'], ['a', 'b', 'c', 'd'], ['a', 'a', 'b', 'c'], ['a', 'b', 'c', 'd']]
繰り返し要素の最大数を見つけるにはどうすればよいですか? たとえば、上記のリストの場合、リストには [a,b,c,d] の 3 つのインスタンスがあるため、これは 3 になります。
どうもありがとう
list1 = [['a', 'b', 'c', 'd'], ['a', 'b', 'c', 'd'], ['a', 'a', 'b', 'c'], ['a', 'b', 'c', 'd'], ['a', 'a', 'b', 'c']] print max(list1.count(e) for e in list1)