python_code list_3

>>> seq=[‘foo‘,‘x41‘,‘?‘,‘***‘]
>>> def func(x):
return x.isalnum()

>>> list(filter(func,seq))
[‘foo‘, ‘x41‘]
>>> seq
[‘foo‘, ‘x41‘, ‘?‘, ‘***‘]
>>> [x for x in seq if x.isalnum(),seq]
SyntaxError: invalid syntax
>>> [x for x in seq if x.isalnum()]
[‘foo‘, ‘x41‘]
>>> list(filter(lambda x: x.isalnum(),seq))
[‘foo‘, ‘x41‘]
>>> list(filter(None,[1,2,0,4,0,6]))
[1, 2, 4, 6]
>>> [1,2,3,4,5]-[2,3]
Traceback (most recent call last):
File "<pyshell#11>", line 1, in <module>
[1,2,3,4,5]-[2,3]
TypeError: unsupported operand type(s) for -: ‘list‘ and ‘list‘
>>> import random
>>> x=[random.randint(1,100)for i in range(10)]
>>> x
[82, 2, 90, 58, 81, 18, 42, 40, 19, 94]
>>> list(map(lambda i: i+5,x))
[87, 7, 95, 63, 86, 23, 47, 45, 24, 99]
>>> y=[random.randint(1,10)for i in range(10)]
>>> y
[4, 8, 10, 10, 7, 2, 9, 1, 7, 4]
>>> import operator
>>> sum(map(operator.mul,x,y))
3354
>>> sum((i*j for i,j in zip(x,y)))
3354
>>> list(map(operator.add,x,y))
[86, 10, 100, 68, 88, 20, 51, 41, 26, 98]
>>> list(map(lambda i,j: i+j, x, y))
[86, 10, 100, 68, 88, 20, 51, 41, 26, 98]
>>> aList=[x*x for x in range(10)]
>>>
>>> aList
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
>>> aList=[]
>>> for x in range(10)
SyntaxError: invalid syntax
>>> for x in range(10):
aList.append(x*x)

>>> aList
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
>>> aList=list(lambda x: x*x, range(10))
Traceback (most recent call last):
File "<pyshell#32>", line 1, in <module>
aList=list(lambda x: x*x, range(10))
TypeError: list() takes at most 1 argument (2 given)
>>> aListt=list(map(lambda x:x*x, range(10)))
>>> aListt
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
>>> freshfruit=[‘banana‘,‘loganberry‘,‘passion fruit‘]
>>> aList=[w.strip() for w in freshfruit]
>>> aList
[‘banana‘, ‘loganberry‘, ‘passion fruit‘]
>>> freshfruit=[‘banana‘,‘loganberry‘,‘passion fruit‘]
>>> aList=[]
>>> for item in freshfruit:
aList.append(item.strip())

>>> aList
[‘banana‘, ‘loganberry‘, ‘passion fruit‘]
>>> freshfruit=[‘banana‘,‘loganberry‘,‘passion fruit‘]
>>> aList =list(map(lambda x: x.strip(),freshfruit))
>>> aList
[‘banana‘, ‘loganberry‘, ‘passion fruit‘]
>>> freshfruit=[‘banana‘,‘loganberry‘,‘passion fruit‘]
>>> aList=list(map(str.strip,freshfruit))
>>> aList
[‘banana‘, ‘loganberry‘, ‘passion fruit‘]
>>> sum([2**x for x in range(64)])
18446744073709551615

时间: 2024-12-26 06:44:49

python_code list_3的相关文章

python_code list_1

>>> def is_not_empty(s): return s and len(s.strip()) > 0 >>> filter(is_not_empty, ['test', None, '', 'str', ' ', 'END'])<filter object at 0x1056a3518>>>> chr(0x1056a3518)Traceback (most recent call last): File "<

python 数据类型 --- 集合

1. 注意列表和集合的区别 set 列表表现形式: list_1 = [1,3,4];  集合表现形式:set_1= set() list_1 = [1,2,3,4,23,4,2] print(list_1,type(list_1)) list_1 = set(list_1) print(list_1,type(list_1)) list_2 = set([2,4,6,8,10]) print(list_2,type(list_2)) #运行结果 [1, 2, 3, 4, 23, 4, 2] <

Python迭代器与生成器

生成器 仅仅拥有生成某种东西的能力,如果不用__next__方法是获取不到值得. 创建一个生成器函数 >>> def scq(): ...    print("11") # 当函数代码块中遇到yield关键字的时候,这个函数就是一个生成器函数 ...    yield 1 ...    print("22") ...    yield 2 ...    print("33") ...    yield 3 ... 把生成器赋值给

Python基础(二)之list

列表:用[]表示 常用方法: list.append,list.insert,list.remove,list.pop,list.count,list.sort,list.reverse,list.index,list.copy 常见操作: list_1 = ['haha','xixi','lala','hehe','zizi','wuwu']print(list_1[1:3]) ##打印出下标为1到3(不包括3)的元素print(list_1[-3:]) ##打印出最后三个元素print(li

第三周python学习笔记 set 集

list_1 = [1,4,56,6,32,2,1223,4] list_2 = [23,4,5,2,1223,1] list_3 = [4,6,1] list_1 = set(list_1) list_2 = set(list_2) print ('type',type(list_2)) # 查看数据类型. #交集 list_jiaoji = list_1.intersection(list_2) list_1.intersection_update(list_2) # 取交集,直接更新到li

python zip()

>>> help(zip) Help on built-in function zip in module __builtin__: zip(...) zip(seq1 [, seq2 [...]]) -> [(seq1[0], seq2[0] ...), (...)] Return a list of tuples, where each tuple contains the i-th element from each of the argument sequences. Th

xUtils更新到3.0后的基本使用规则

说实话,对于xUtils,是我最近才用到的开发框架(也是刚接触),对于其功能不得不说,简化了很多的开发步骤,可以说是非常好的开发工具,但是其最近更新到3.0也没有解决加载自定义ImageView报错的问题. 我总是喜欢用一些最新的东西,xUtils 3.0才刚更新,是一次比较大的重构,对于百度到的使用规则,基本都是3.0以前的,使得用3.0的开发者需要求解用法的时候,遇到许多阻碍,故此在这里简单介绍xUtils 3.0的使用规则.关于怎么导入功能,其实并不是本文的内容,不过在此文最后一节简单讲解

10、JPA_映射双向多对多的关联关系

双向多对多的关联关系 双向多对多的关联关系(抽象成A-B)具体体现:A中有B的集合的引用,同时B中也有对A的集合的引用.A.B两个实体对应的数据表靠一张中间表来建立连接关系. 同时我们还知道,双向多对多的关联关系可以拆分成三张表,两个双向多对一关联关系.拆分以后还是有一张中间表,其好处就是可以在中间表中添加某些属性用作其它.这个后面会讲解.而单纯的双向多对多关联关系的中间表有两个外键列,无法增加其它属性. 本节只讲单纯的双向多对多关联关系.从例子讲解配置方法和原理: 有“商品Item”和“类别C

6、JPA_映射单向多对一的关联关系(n的一方有1的引用,1的一方没有n的集合属性)

单向多对一的关联关系 具体体现:n的一方有1的引用,1的一方没有n的集合属性 举个例子:订单Order和顾客Customer是一个单向多对一的关联关系.Order是n的一方,有对Customer的引用:而Customer作为1的一方却没有Order的集合属性. 主要是对n的一方使用@ManyToOne和@JoinColumn注解.而1的一方不需要做任何修改.具体的映射方法: 1.采用@ManyToOne注解映射多对一的关联关系,默认情况下采用“左外连接”的方式进行加载.可以通过配置@ManyTo