The prime factors of 13195 are 5, 7, 13 and 29. What is the largest prime factor of the number 600851475143 ? 欧拉题里很多是关于求质数,求质数的方法很多,我推荐的是筛选法,效率高,也很好理解.百度一下就有详细说明. def primeslist(max): a = [True]*(max+1) # 创建一个list,下标的位置就代表数字 a[0],a[1]=False,False # 0…