logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

python批量定义变量

NameError: name 'xx' is not defined

文章图片
#python
python识别选中文本

python识别剪切板内容

文章图片
#开发语言#python
python背包问题

背包问题可以分为:01背包 和 完全背包问题。简要概括:01背包:每种物品只能拿一次或者不拿。完全背包:每种物品可以拿无限次。01背包:import numpy as npweight=[1,3,6,5,7]#物品重量price=[2,1,3,5,4]#物品价值weight_most=10def fullbag(weight,price,weight_most):#return max value

#动态规划#算法#python
AttributeError: module ‘cv2‘ has no attribute ‘gapi_wip_gst_GStreamerPipeline‘

在进行人脸识别学习时,报了以下错误:AttributeError: module 'cv2' has no attribute 'face'百度后发现face这个函数并不是opencv库中自带的,需要下载然后又报了这个错误AttributeError: module 'cv2' has no attribute 'gapi_wip_gst_GStreamerPipeline'再次百度搜索搜到两种解

#python#开发语言
到底了