
小白
victory bear
唯有坚持,不负梦想。
展开
-
使用清华镜像的安装模块-pip
使用清华镜像的安装模块-pip原创 2022-12-12 13:59:58 · 2470 阅读 · 1 评论 -
ImportError cannot import name ‘WordCloud‘ from ‘pyecharts‘的解决方案
1.出错代码import pandas as pdfrom pyecharts.charts import Mapfrom pyecharts.charts import Barfrom pyecharts.charts import Linefrom pyecharts.charts import Gridfrom pyecharts.charts import Piefrom pyecharts.charts import Scatterfrom pyecharts.charts i原创 2021-11-29 17:18:35 · 1837 阅读 · 0 评论 -
如何将多个txt文件合并成一个文本?
(1)将多个txt文件放在一个文件夹下。(2)win+R输入cmd,cd文件的绝对路径按回车里面的命令为type *.txt >wwww.txt(3)执行该命令,则所有txt文件合并到wwww.txt文件中了。原创 2021-09-16 15:15:46 · 4859 阅读 · 0 评论 -
软件测试之各种缺陷
软件测试之各种缺陷原创 2021-06-09 14:25:57 · 152 阅读 · 3 评论 -
软件测试之常用术语
软件测试之常用术语:错误(error):==bug,如果长时间不改,会呈指数倍的影响产品。缺陷(fault):是错误的结果。分为2种:(1)过错缺陷:把正确的信息输入到不正确的表示中(2)遗漏缺陷:没有输入正确的信息。(难检测)失效(failure):当缺陷执行时发生失效。 通常出现在源代码中。,与过错缺陷有关。事故(incident):当出现失效时,可能会也可能不会呈现给用户(测试人员或用户)。说明出现了与失效类似的情况,警告用户注意。测试(test):处理初五、缺陷、失效和事故,采用测试原创 2021-06-09 14:18:36 · 448 阅读 · 0 评论 -
mysql-Mar24-day1
1外连接:左连接(left join …on)[以左表的记录为主]右连接 (right join…on) [以右表的记录为主]完全外连接(full join…on) [以两个表的所有记录的记录为主]2.内连接List item原创 2021-03-24 11:27:58 · 119 阅读 · 0 评论 -
Python小白笔记
1.显示数字9的下标a.index('9')2.将小写转化为大写a.upper()3.将大写转为小写a.lower()4.第一个字母大写a.capitalize()5.连接w,并使元素与元素之间没有空格,were dfe"".join(w)6.有一个空格,w e r e d f e" ".join(w)7.将c替换为ww" ".join(w...原创 2020-03-12 21:04:22 · 150 阅读 · 1 评论