摘要: // Code file created by C Code Develop #include "ccd.h" #include "stdio.h" #include "stdlib.h" #include "string.h" //1、memset函数 /*memset 函数是内存空间赋值函数,用 阅读全文
posted @ 2021-09-26 21:40 def_Class 阅读(98) 评论(0) 推荐(0) 编辑
摘要: // Code file created by C Code Develop #include "ccd.h" #include "stdio.h" #include "stdlib.h" #include "string.h" // 结构体 // 为了表达一个数据集 // 人的基本信息 姓名(字符 阅读全文
posted @ 2021-09-26 21:38 def_Class 阅读(44) 评论(0) 推荐(0) 编辑
摘要: // Code file created by C Code Develop #include "ccd.h" #include "stdio.h" #include "stdlib.h" int main(int argc, char **argv) { //字符与整数的关系 /*字符类型char 阅读全文
posted @ 2021-09-26 21:37 def_Class 阅读(175) 评论(0) 推荐(0) 编辑
摘要: // Code file created by C Code Develop #include "ccd.h" #include "stdio.h" #include "stdlib.h" #include <time.h> int main(int argc, char **argv) { // 阅读全文
posted @ 2021-09-26 21:35 def_Class 阅读(57) 评论(0) 推荐(0) 编辑
摘要: 指针的代码 // Code file created by C Code Develop #include "ccd.h" #include "stdio.h" #include "stdlib.h" // #include "waibu.c" #include "string.h" int mai 阅读全文
posted @ 2021-09-26 21:34 def_Class 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 问题描述 A、B、C、D、E这5个人合伙夜间捕鱼,凌晨时都已经疲惫不堪,于是各自在河边的树丛中找地方睡着了。第二天日上三竿时,A第一个醒来,他将鱼平分为5份,把多余的一条扔回河中,然后拿着自己的一份回家去了;B第二个醒来,但不知道A已经拿走了一份鱼,于是他将剩下的鱼平分为5份,扔掉多余的一条,然后只 阅读全文
posted @ 2021-09-26 21:25 def_Class 阅读(318) 评论(0) 推荐(0) 编辑
摘要: 对于uwsgi+nginx的部署方式,它的访问关系大概是: 1 the web client <-> the web server <-> the socket <-> uwsgi <-> Django 如果你需要使用virtualenv: 1 2 3 virtualenv uwsgi-tutori 阅读全文
posted @ 2021-09-26 21:01 def_Class 阅读(5) 评论(0) 推荐(0) 编辑
摘要: Python3 下载 国内下载网址: http://mirrors.sohu.com/python/3.6.1/Python-3.6.1.tgz 下载后通过ftp放入/usr/local/bin目录解压如下 以 Python3.6.1 版本为例: # tar -zxvf Python-3.6.1.t 阅读全文
posted @ 2021-09-26 20:57 def_Class 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 搭建uWSGI工作环境 在 WSGI 协议中定义了两个角色:一个是 Web 服务器即 server,另一个是应用程序即 application,server 需要接受来自客户端的请求,然后根据协议定义调用应用程序(application),应用程序处理请求并返回结果给 server,最终响应给客户端 阅读全文
posted @ 2021-09-26 20:57 def_Class 阅读(29) 评论(0) 推荐(0) 编辑
摘要: labelImg是图片标注软件,用于数据集的制作、标注等等。下面介绍labelImg的安装过程。 我用的是anaconda,所以以anaconda prompt作为终端: 在Anaconda Prompt中依次运行以下命令(注意大小写) pip install PyQt5 -i https://py 阅读全文
posted @ 2021-09-26 20:56 def_Class 阅读(186) 评论(0) 推荐(0) 编辑