您现在的位置是:课程教程文章
有用的20个python代码段(5)
2023-12-18 17:58课程教程文章 人已围观
-
Python HttpRunner 接口自动化测试 项目实践
Python HttpRunner 接口自动化测试 项目实践Python HttpRunner 接口自动化测试 项目实践 ============================ 课程介绍 ------... -
计算机二级Python通关课程(高教社考试)
计算机二级Python通关课程(高教社考试)紧扣教材、精学课程体系,花少量时间,掌握重点、考点、核心得分点。 课程... -
Python爬虫Scrapy框架项目实战
Python爬虫Scrapy框架项目实战本次课程仍然由我们万和IT教育的陈海涛老师主讲。 课程区别与之前两个初级与... -
Python爬虫之Beautiful Soup教程
Python爬虫之Beautiful Soup教程课程咨询、获取课件、技术交流直接添加博学谷微信号: bxgcourse ;也可以直接...
有用的20个python代码段(5):
1、列表清单扁平化
有时你不确定列表的嵌套深度,而且只想全部要素在单个平面列表中。
可以通过以下方式获得:
from iteration_utilities import deepflatten # if you only have one depth nested_list, use this def flatten(l): return [item for sublist in l for item in sublist] l = [[1,2,3],[3]] print(flatten(l)) # [1, 2, 3, 3] # if you don't know how deep the list is nested l = [[1,2,3],[4,[5],[6,7]],[8,[9,[10]]]] print(list(deepflatten(l, depth=3))) # [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
若有正确格式化的数组,Numpy扁平化是更佳选择。
2、列表取样
通过使用random软件库,以下代码从给定的列表中生成了n个随机样本。
import random my_list = ['a', 'b', 'c', 'd', 'e'] num_samples = 2 samples = random.sample(my_list,num_samples) print(samples) # [ 'a', 'e'] this will have any 2 random values
强烈推荐使用secrets软件库生成用于加密的随机样本。
以下代码仅限用于Python 3。
import secrets # imports secure module. secure_random = secrets.SystemRandom() # creates a secure random object. my_list = ['a','b','c','d','e'] num_samples = 2 samples = secure_random.sample(my_list, num_samples) print(samples) # [ 'e', 'd'] this will have any 2 random values
3、数字化
以下代码将一个整数转换为数字列表。
num = 123456 # using map list_of_digits = list(map(int, str(num))) print(list_of_digits) # [1, 2, 3, 4, 5, 6] # using list comprehension list_of_digits = [int(x) for x in str(num)] print(list_of_digits) # [1, 2, 3, 4, 5, 6]
4、检查唯一性
以下函数将检查一个列表中的所有要素是否唯一。
def unique(l): if len(l)==len(set(l)): print("All elements are unique") else: print("List has duplicates") unique([1,2,3,4]) # All elements are unique unique([1,1,2,3]) # List has duplicates
更多Python知识,请关注:Python自学网!!
课程教程:有用的20个python代码段(5)下一篇:没有了