私は、素数が最も多い数字を印刷しようとしています。時間が印刷されている番号を印刷しています。最高の素数を持つ数字を印刷する
#checking for the highest number
import collections
a= [11,11,11,23,37,53,37,37,2,11,23,21,17,12,17,17,17,17,19,19,11,11,33,33]
counter=collections.Counter(a)
print counter.most_common(1)
#checking the number that occurs prime times
for n in a:
times=a.count(n)
root=times**0.5
i=2
while i<= root:
if times% i != 0:
print n
i+=1
必要なものを具体的に教えてください。期待どおりの出力と電流出力を提供できますか? – magicleon
@magicleon入力がaで出力が17 17 17 17 17プロジェクトを実行してより良いアイデアを得るために出力を参照してください –