11 2023 档案

摘要:1.计算一个list的平均值 import numpy as np # 创建一个包含数字的列表 my_list = [1, 2, 3, 4, 5] # 使用numpy.mean()函数计算平均值 average = np.mean(my_list) print("平均值:", average) 2. 阅读全文
posted @ 2023-11-28 16:56 python学习者0 阅读(123) 评论(0) 推荐(0) 编辑
摘要:直接先上错误代码: import multiprocessing def first_way(): init = 3 def process_function(item): result = item * init return result data = [1, 2, 3, 4, 5, 6, 7, 阅读全文
posted @ 2023-11-22 16:31 python学习者0 阅读(105) 评论(0) 推荐(0) 编辑
摘要:1.匿名函数 def name(a,b): return a+b f=lambda a,b:a+b print(f(15,15)) 2.map函数 第一个参数接收一个函数名,第二个参数接收一个可迭代对象,利用map,lambda表达式将所有偶数元素加100 def fun(a,b): return 阅读全文
posted @ 2023-11-18 16:35 python学习者0 阅读(168) 评论(0) 推荐(1) 编辑
摘要:1.遍历 m = {'a': 1, 'b': 2, 'c': 3} n = {} for k, v in m.items(): n[v] = k print(n) 2.字典推导式 m = {'a': 1, 'b': 2, 'c': 3} n = {v: k for k, v in m.items() 阅读全文
posted @ 2023-11-14 16:52 python学习者0 阅读(30) 评论(0) 推荐(0) 编辑
摘要:一、使用 time 模块展示当前日期和时间 import time from time import gmtime, strftime t = time.localtime() print (time.asctime(t)) # Sun May 7 09:30:37 2017 print(strft 阅读全文
posted @ 2023-11-08 16:48 python学习者0 阅读(1941) 评论(0) 推荐(0) 编辑
摘要:Python的遍历数组的三种方式。 遍历方式 假设:nums=[4,5,6,10,1] 第一种,for in的语法,这种语法很方便,但是在写Python算法里面用到的少 for num in nums: print (num) 第二种是下标访问,range生成0到数组最大长度的下标数组 for in 阅读全文
posted @ 2023-11-02 15:31 python学习者0 阅读(451) 评论(0) 推荐(0) 编辑