自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(8)
  • 收藏
  • 关注

原创 python 进入调用函数内部debug

debug

2022-06-30 14:56:04 1340 1

原创 Yolo5实现,运行问题 AttributeError: ‘DetectMultiBackend‘ object has no attribute ‘input_details‘

AttributeError: 'DetectMultiBackend' object has no attribute 'input_details'

2022-06-29 15:49:04 4335 5

原创 虚拟环境使用pip安装,安装在外部环境

pip --user

2022-06-01 11:11:04 445

原创 jupyter nootbook加载conda创建的虚拟环境

进入虚拟环境,以下三种命令可尝试conda install nb_condaconda install ipythonconda install nb_conda_kernels #成功

2022-05-13 09:17:30 244

原创 C语言链表创建、插入、删除(附图解)

全文核心思想,设置变量地址ptail, p, q。方便对链表操作#include<stdio.h>#include<stdlib.h>typedef struct node{ int data; struct node *next;};creatlist();traversal();insert_node(phead);delete_node(phead);int main(){ struct node *phead = NULL; printf(

2022-05-11 10:47:45 1223

原创 python 读写文件操作(open(file))

print('#创建test文件并写入(‘w’ 模式)')f = open('test', 'w')f.write('this is a text file. \nhello word! \npython is good!')f.close()print('#打开文件,并读出文件内容')f = open('test').read()print(f)# f.close()print('#将文件每行内容写进列表')f = open('test')lines = f.readlines()

2022-04-26 14:26:21 1105

原创 C 创建多重结构体数组(指向结构体的指针)

多重结构体数组#include<stdio.h>#define MAXLEN 15struct students{ char name[MAXLEN]; int scores; float heights;};struct schools{ struct students class; char school_name[MAXLEN]; int school_age;};int main(){ struct students a[2] = { { "t.z

2022-04-24 14:42:21 640

原创 毕业论文给图、表格、公式编号(不设置多级列表)

毕业论文给图、表格、公式编号(不设置多级列表)注意!这里编号根据每章为顺序给图设置编号注意!这里编号根据每章为顺序给图设置编号1.给第一章设置编号,看图:点击(引用)对话框里的(插入题注)(新建便签)弹出的对话框给便签命名(图1.),这一点很重要!!!!如果给第一章编号命名为 (图1.)如果给第二章命名,命名为(图2.)序号后面别忘了有个点号!!!!具体为什么接下来就知道了...

2019-07-15 16:50:56 1849

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除