01 2021 档案

摘要:%d 按照十进制整型数打印 %6d 按照十进制整型数打印,至少6个字符宽 %f 按照浮点数打印 %6f 按照浮点数打印,至少6个字符宽 %.2f 按照浮点数打印,小数点后有两位小数 %6.2f 按照浮点数打印,至少6个字符宽,小数点后有两位小数 %.0f 强制不打印小数点和小数部分 字符常量:单引号 阅读全文
posted @ 2021-01-31 15:42 天气之子A 阅读(118) 评论(0) 推荐(0)
摘要:collect2.exe: error: ld returned 1 exit status错误(C入门) 阅读全文
posted @ 2021-01-31 11:07 天气之子A 阅读(44) 评论(0) 推荐(0)
摘要:安装:http://c.biancheng.net/cpp/html/3389.html 使用:http://c.biancheng.net/view/462.html 百度网盘: 链接:https://pan.baidu.com/s/1PU7z-STJb3sr2THa_qvDFA 提取码:y1ma 阅读全文
posted @ 2021-01-31 10:40 天气之子A 阅读(98) 评论(0) 推荐(0)
摘要:参考:https://www.jianshu.com/p/db2be7aa6659 本文将介绍MQ135的两种使用方法 不使用库文件 使用别人写好的库文件 1.不使用库文件 准备材料 Arduino Uno *1 MQ-135 传感器 *1 跳线 *3 面包板 *1 接线 接线示意图 MQ135 A 阅读全文
posted @ 2021-01-28 17:50 天气之子A 阅读(853) 评论(0) 推荐(0)
摘要:navicat快捷键:https://www.cnblogs.com/457248499-qq-com/p/7449492.html 阅读全文
posted @ 2021-01-24 16:43 天气之子A 阅读(55) 评论(0) 推荐(0)
摘要:备份:数据表结构+数据 mysqldump -u root db1 > db1.sql -p 备份:数据表结构 mysqldump -u root -d db1 > db1.sql -p 导入现有数据库数据: mysqldump -uroot -p密码 数据库名称 < 文件路径 (mysqldump 阅读全文
posted @ 2021-01-24 14:50 天气之子A 阅读(458) 评论(0) 推荐(0)
摘要:参考:https://blog.csdn.net/s592652578/article/details/42455973 阅读全文
posted @ 2021-01-22 09:39 天气之子A 阅读(1122) 评论(0) 推荐(0)
摘要:参考1:https://www.cnblogs.com/lzhc/p/10893846.html 参考2:https://www.jianshu.com/p/e3d384e51db9 参考3:https://blog.csdn.net/yuanzhoulvpi/article/details/104 阅读全文
posted @ 2021-01-20 13:52 天气之子A 阅读(235) 评论(0) 推荐(0)
摘要:sys.path()查看所有的包导入路径 阅读全文
posted @ 2021-01-18 09:15 天气之子A 阅读(262) 评论(0) 推荐(0)
摘要:查看MySQL运行状态:systemctl status mysql(参考:https://blog.csdn.net/weixin_45793065/article/details/106574616) 关闭MySQL :systemctl stop mysqld(注意:是mysqld不是mysq 阅读全文
posted @ 2021-01-16 15:29 天气之子A 阅读(97) 评论(0) 推荐(0)
摘要:mysql默认的存储引擎是什么?它们的区别有哪些?mysql中索引有哪些? 1、mysql默认引擎 mysql-5.1版本之前默认引擎是MyISAM,之后是innoDB 2、关系 MyISAM是非集聚引擎,支持全文索引;不支持事务;它是表级锁;会保存表的具体行数. innoDB是集聚引擎,5.6以后 阅读全文
posted @ 2021-01-16 14:07 天气之子A 阅读(302) 评论(0) 推荐(0)
摘要:1.pip install pqi 安装pqi库 2.pqi ls 显示已经内置的 数据源地址 3.pqi use aliyun 把python,pip 切换成阿里云的下载地址。一劳永逸。。。。 阅读全文
posted @ 2021-01-11 17:38 天气之子A 阅读(139) 评论(0) 推荐(0)
摘要:Python 获取中文的首字母 和 全部拼音首字母 代码如下: import pinyin def getStrAllAplha(str): return pinyin.get_initial(str, delimiter="").upper() def getStrFirstAplha(str): 阅读全文
posted @ 2021-01-11 17:37 天气之子A 阅读(1439) 评论(0) 推荐(1)
摘要:参考:https://blog.csdn.net/fifteen718/article/details/80359844 参考:https://www.cnblogs.com/EasonJim/p/7514113.html 参考:https://blog.csdn.net/sunhuaqiang1/ 阅读全文
posted @ 2021-01-09 15:26 天气之子A 阅读(148) 评论(0) 推荐(0)
摘要:1.linux装机,U盘刻录服务器页面显示:https://blog.csdn.net/eppley/article/details/86166731ULTRAiso:制作u盘: https://blog.csdn.net/hanxh7/article/details/80236639?utm_me 阅读全文
posted @ 2021-01-08 10:28 天气之子A 阅读(241) 评论(0) 推荐(0)
摘要:mysqld --initialize-insecure 如果报错,提示没有data,就在相应目录下创建data文件夹。 阅读全文
posted @ 2021-01-07 16:59 天气之子A 阅读(50) 评论(0) 推荐(0)
摘要:参考:https://blog.csdn.net/xz842913787/article/details/107855672(未证实) 阅读全文
posted @ 2021-01-06 14:03 天气之子A 阅读(48) 评论(0) 推荐(0)
摘要:参考:https://blog.csdn.net/qq_43557600/article/details/88539894 Python MySQL 创建数据库 注意:password与passwd都可以使用,da_name不需要在两边加‘ ’符号,会自动加上 # python + pymysql 阅读全文
posted @ 2021-01-06 13:58 天气之子A 阅读(1706) 评论(0) 推荐(0)
摘要:在 npm 5 之前的版本 使用 npm install 默认选项安装包时,仅仅会把包下载到 node_modules/ 中,并不会同时修改 package.json。而使用 --save 选项就可以在安装包的同时,修改 package.json 文件。 在 npm 5 之后的版本 npm inst 阅读全文
posted @ 2021-01-06 13:14 天气之子A 阅读(266) 评论(0) 推荐(0)
摘要:参考:https://element.eleme.cn/#/zh-CN/component/installation npm i element-ui -S 在main.js中 import Vue from 'vue' import ElementUI from 'element-ui'; Vue 阅读全文
posted @ 2021-01-06 13:10 天气之子A 阅读(345) 评论(0) 推荐(0)
摘要:参考:https://www.jianshu.com/p/a7c4ff4ed14c?utm_campaign=haruki 参考:https://www.cnblogs.com/shannen/p/12545382.html 参考三 阅读全文
posted @ 2021-01-06 11:33 天气之子A 阅读(660) 评论(0) 推荐(0)
摘要:参考:https://zhuanlan.zhihu.com/p/37653878 yarn中文文档:https://yarn.bootcss.com/ 阅读全文
posted @ 2021-01-06 11:00 天气之子A 阅读(78) 评论(0) 推荐(0)
摘要:视频参考:https://www.bilibili.com/video/BV1Zx411q7dN http://www.taichi-maker.com/homepage/arduino-tutorial-index/mearm-index/mearm-18-bluetooth-arduino-2/ 阅读全文
posted @ 2021-01-05 21:37 天气之子A 阅读(368) 评论(0) 推荐(0)
摘要:一、引脚图示 二、引脚名称、功能 三、引脚接口说明 阅读全文
posted @ 2021-01-05 21:28 天气之子A 阅读(6553) 评论(0) 推荐(0)
摘要:官网:https://dev.mysql.com/downloads/mysql/ 阅读全文
posted @ 2021-01-04 15:47 天气之子A 阅读(48) 评论(0) 推荐(0)
摘要:参考:https://blog.csdn.net/weixin_38091140/article/details/103852840 我们只需在settings.py设置: APPEND_SLASH=False 这样访问就不会自动添加后缀/了,因为这个配置默认是True的所以想要自动添加,不加这个设 阅读全文
posted @ 2021-01-03 15:41 天气之子A 阅读(931) 评论(0) 推荐(0)
摘要:Django REST framework 中文文档 参考:https://www.cnblogs.com/liwenzhou/p/8543035.html 阅读全文
posted @ 2021-01-03 15:34 天气之子A 阅读(163) 评论(0) 推荐(0)
摘要:本文参考:https://blog.csdn.net/meidong52617/article/details/44728517 相关参考:https://blog.csdn.net/lws123253/article/details/79848373 一、getchar的两点总结: 1.getch 阅读全文
posted @ 2021-01-02 14:26 天气之子A 阅读(646) 评论(0) 推荐(0)