码迷,mamicode.com
首页 > 其他好文 > 详细

列表[1,2,3,4,5],请使用map()函数输出[1,4,9,16,25],并使用列表推导式提取出大于10的数,最终输出[16,25]

时间:2020-03-10 19:53:30      阅读:99      评论:0      收藏:0      [点我收藏+]

标签:target   函数   mda   提取   使用   str   return   博客   numpy   

列表[1,2,3,4,5],请使用map()函数输出[1,4,9,16,25],并使用列表推导式提取出大于10的数,最终输出[16,25]

def f(x):
    return x**2
 
 
res = map(f, [1, 2, 3, 4, 5])
print([i for i in res if i > 10])

python中生成随机整数、随机小数、0—1之间小数方法

import random
import numpy as np
 
a = random.randint(10,20)
res = np.random.randn(5)
ret = random.random()
print("正整数:"+str(a))
print("5个随机小数:"+str(res))
print("0-1随机小数:"+str(ret))

 

本文首发于Python黑洞网,博客园同步跟新

 

 

列表[1,2,3,4,5],请使用map()函数输出[1,4,9,16,25],并使用列表推导式提取出大于10的数,最终输出[16,25]

标签:target   函数   mda   提取   使用   str   return   博客   numpy   

原文地址:https://www.cnblogs.com/pythonzhilian/p/12458091.html

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