⼿机查看python代码_30个极简Python代码,拿⾛即⽤字符元素组成判定
检查两个字符串的组成元素是不是⼀样的。
fromcollections importCounterdefanagram(first, second):returnCounter(first) == Counter(second)anagram( "abcd3", "3acdb") # True
3
内存占⽤
import sysvariable = sizeof(variable)) # 24
夫妻生活在线教程
4
字节占⽤
下⾯的代码块可以检查字符串占⽤的字节数。
defbyte_size(string):return(de( 'utf-8')))byte_size( '') # 4byte_size( 'Hello World') # 11
5imperative的名词
打印 N 次字符串
该代码块不需要循环语句就能打印 N 次字符串。
n = 2s = "Programming"print(s * n)# ProgrammingProgramming
6⼤写第⼀个字母
以下代码块会使⽤ title ⽅法,从⽽⼤写字符串中每⼀个单词的⾸字母。
s = "programming is awesome"print(s.title)# Programming Is Awesome
7
分块
给定具体的⼤⼩,定义⼀个函数以按照这个⼤⼩切割列表。
frommath importceildefchunk(lst, size):returnlist(map( lambdax: lst[x * size:x * size + size],list(range( 0, ceil(len(lst) / size)))))chunk([ 1, 2, 3, 4, 5], 2)# [[1,2],[3,4],5]
8
it课程体验官压缩
这个⽅法可以将布尔型的值去掉,例如(False,None,0,“”),它使⽤ filter 函数。
defcompact(lst):returnlist(filter(bool, lst))compact([ 0, 1, False, 2, '', 3, 'a', 's', 34])# [ 1, 2, 3, 'a', 's', 34 ]
9
解包
如下代码段可以将打包好的成对列表解开成两组不同的元组。
array= [[ 'a', 'b'], [ 'c', 'd'], [ 'e', 'f']]transposed = zip(* array)print(transposed)# [( 'a', 'c', 'e'), ( 'b', 'd', 'f')]
bootstraptable最后一行文字10 链式对⽐
我们可以在⼀⾏代码中使⽤不同的运算符对⽐多个不同的元素。
a = 3print( 2 < a < 8) # Trueprint(1 == a < 2) # False
11 逗号连接
下⾯的代码可以将列表连接成单个字符串,且每⼀个元素间的分隔⽅式设置为了逗号。viewport frames
hobbies = [ "basketball", "football", "swimming"]print( "My hobbies are: "+ ", ".join(hobbies))# My hobbies are: basketball, football, swimming
12 元⾳统计
以下⽅法将统计字符串中的元⾳ (‘a’, ‘e’, ‘i’, ‘o’, ‘u’) 的个数,它是通过正则表达式做的。
importredefcount_vowels(str):returnlen(len(re.findall( r'[aeiou]', str, re.IGNORECASE)))count_vowels( 'foobar') #
3count_vowels( 'gym') # 0
13 ⾸字母⼩写
如下⽅法将令给定字符串的第⼀个字符统⼀为⼩写。
defdecapitalize(string):returnstr[: 1].lower + str[ 1:]decapitalize( 'FooBar') # 'fooBar'decapitalize( 'FooBar') # 'fooBar'
极简python快速入门教程
14 展开列表
该⽅法将通过递归的⽅式将列表的嵌套展开为单个列表。
defspread(arg):ret = []fori inarg:ifisinstance(i, list):d(i)else:ret.append(i)returnretdefdeep_flatten(lst):result =
[]d(spread(list(map( lambdax: deep_flatten(x) iftype(x) == list elsex, lst))))returnresultdeep_flatten([ 1, [ 2], [[ 3], 4], 5]) # [1,2,3,4,5]
15 列表的差
该⽅法将返回第⼀个列表的元素,其不在第⼆个列表内。如果同时要反馈第⼆个列表独有的元素,还需要加⼀句
set_b.difference(set_a)。
def difference(a, b):set_a = set(a)set_b = set(b)comparison = set_a.difference(set_b)return
list(comparison)difference([1,2,3], [1,2,4]) # [3]
16 通过函数取差
如下⽅法⾸先会应⽤⼀个给定的函数,然后再返回应⽤函数后结果有差别的列表元素。
defdifference_by(a, b, fn):b = set(map(fn, b))return[item foritem ina iffn(item) notinb]frommath importfloordifference_by([ 2.1, 1.2], [ 2.3, 3.4],floor) # [1.2]difference_by([{ 'x': 2}, { 'x': 1}], [{ 'x': 1}], lambdav : v[ 'x'])# [ { x: 2 } ]
17 链式函数调⽤
你可以在⼀⾏代码内调⽤多个函数。
defadd(a, b):returna + bdefsubtract(a, b):returna - ba, b = 4, 5print((subtract ifa > b elseadd)(a, b)) # 9
18 检查重复项
如下代码将检查两个列表是不是有重复项。
def has_duplicates(lst):return len(lst) != len(set(lst))x = [1,2,3,4,5,5]y = [1,2,3,4,5]has_duplicates(x) # Truehas_duplicates(y) # False
19 合并两个字典
下⾯的⽅法将⽤于合并两个字典。
defmerge_two_dicts(a, b):c = a.copy # make a copy of ac.update(b) # modify keys and values of a with the once from breturnca={ 'x': 1, 'y': 2}b={ 'y': 3, 'z': 4}print(merge_two_dicts(a,b))#{'y':3,'x':1,'z':4}
在 Python 3.5 或更⾼版本中,我们也可以⽤以下⽅式合并字典:
def merge_dictionaries(a, b)return{**a, **b}a = { 'x': 1, 'y': 2}b = { 'y': 3, 'z': 4}print(merge_dictionaries(a, b))# { 'y': 3, 'x': 1, 'z': 4}
20 将两个列表转化为字典
如下⽅法将会把两个列表转化为单个字典。
def to_dictionary( keys, values):returndict(zip( keys, values))keys= [ "a", "b", "c"]values= [ 2, 3, 4]print(to_dictionary( keys, values))#{'a': 2, 'c': 4, 'b': 3}
21 使⽤枚举
我们常⽤ For 循环来遍历某个列表,同样我们也能枚举列表的索引与值。
list = [ "a", "b", "c", "d"]forindex, element inenumerate( list):print( "Value", element, "Index ", index,)# ( 'Value', 'a', 'Index ', 0)# ( 'Value', 'b', 'Index ', 1)#( 'Value', 'c', 'Index ', 2)# ( 'Value', 'd', 'Index ', 3)
22 执⾏时间
如下代码块可以⽤来计算执⾏特定代码所花费的时间。
import timestart_time = time.timea = 1b = 2c = a + bprint(c) #3end_time = time.timetotal_time = end_time -
start_timeprint("Time: ", total_time)# ('Time: ', 1.1205673217773438e-05)
23 Try else
我们在使⽤ try/except 语句的时候也可以加⼀个 else ⼦句,如果没有触发错误的话,这个⼦句就会被运⾏。
try:2* 3exceptTypeError:print( "An exception was raised")else:print( "Thank God, no exceptions were raised.")#Thank God, no exceptions were raised.
24 元素频率
下⾯的⽅法会根据元素频率取列表中最常见的元素。
def most_frequent( list):returnmax(set( list), key = unt)list= [ 1, 2, 1, 2, 3, 2, 1, 4, 2]most_frequent( list)
25 回⽂序列
以下⽅法会检查给定的字符串是不是回⽂序列,它⾸先会把所有字母转化为⼩写,并移除⾮英⽂字母符号。最后,它会对⽐字符串与反向字符串是否相等,相等则表⽰为回⽂序列。
defpalindrome(string):fromre importsubs = sub( '[W_]', '', string.lower)returns == s[:: -1]palindrome( 'taco cat') # True
26 不使⽤ if-else 的计算⼦
这⼀段代码可以不使⽤条件语句就实现加减乘除、求幂操作,它通过字典这⼀数据结构实现:
import operatoraction = {"+": operator. add,"-": operator.sub,"/": uediv,"*": operator.mul,"**": pow}print(action[ '-']( 50, 25)) # 25
27 Shuffle
该算法会打乱列表元素的顺序,它主要会通过 Fisher-Yates 算法对新列表进⾏排序:
fromcopy import deepcopyfromrandom import randintdefshuffle(lst):temp_lst= deepcopy(lst)m= len(temp_lst)while(m):m-= 1i= randint(0, m)temp_lst[m],temp_lst[i] = temp_lst[i], temp_lst[m]returntemp_lstfoo= [1,2,3]shuffle(foo)# [2,3,1] , foo = [1,2,3]
28 展开列表
将列表内的所有元素,包括⼦列表,都展开成⼀个列表。
defspread(arg):ret = []fori inarg: ifisinstance(i, list):d(i)else:ret.append(i)returnretspread([ 1, 2, 3,[ 4, 5, 6],[ 7], 8, 9]) # [1,2,3,4,5,6,7,8,9]
29 交换值
不需要额外的操作就能交换两个变量的值。
defswap(a, b):returnb, aa, b = -1, 14swap(a, b) # (14, -1)spread([ 1, 2, 3,[ 4, 5, 6],[ 7], 8, 9]) # [1,2,3,4,5,6,7,8,9]
30 字典默认值
通过 Key 取对应的 Value 值,可以通过以下⽅式设置默认值。如果 get ⽅法没有设置默认值,那么如果遇到不存在的 Key,则会返回None。
作者:Fatos Morina(机器之⼼编译)
作者:Fatos Morina(机器之⼼编译)

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。