码迷,mamicode.com
首页 > 编程语言 > 详细

python 匿名函数实现求素数平方和

时间:2019-10-21 09:52:19      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:bre   mat   append   inpu   spl   pre   python   int   函数   

sq=lambda x:x**2
def list_prime(*data):
list1=[]
list2=[]
for i in data:
list1.append(i)
for i in range(len(list1)):
a=0
for j in range(2,list1[i]):
if list1[i]%j==0:
a=1
break
if a==0 and list1[i]>1:
list2.append(list1[i])
return list2
c=list(map(int, input("请输入一串数字(用空格分隔):").split()))
print("素数有:{}".format(list_prime(*c)))
list3=[]
for i in list_prime(*c):
list3.append(i)
print("素数的平方和分别为:{}".format(list3))

python 匿名函数实现求素数平方和

标签:bre   mat   append   inpu   spl   pre   python   int   函数   

原文地址:https://www.cnblogs.com/sunflowers-lanqijiu/p/11711437.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!