摘要: 1.match #match是从头开始匹配 m1=re.match(r"\d+","我的电话号是:10086,我女朋友的电话号是:10010") m2=re.match(r"\d+","10086,我女朋友的电话号是:10010") print(m2.group()) 2.serach #searc 阅读全文
posted @ 2021-04-05 12:03 FlowLiver 阅读(62) 评论(0) 推荐(0) 编辑
摘要: 1.windows 启动 阅读全文
posted @ 2021-04-04 12:44 FlowLiver 阅读(349) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2020.cnblogs.com/blog/2287326/202104/2287326-20210403214947935-1196994930.png) ![](https://img2020.cnblogs.com/blog/2287326/202104/2287326-20210403215000281-65660313.png) ![](https://im 阅读全文
posted @ 2021-04-03 21:57 FlowLiver 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 1.miniconda Python官方发行版第三方库很少,Anaconda又太臃肿,所以这里用 https://docs.conda.io/en/latest/miniconda.html#windows-installers 下载后一路安装即可,记住安装路径 1.1 配置环境变量 2.PyCha 阅读全文
posted @ 2021-04-03 20:28 FlowLiver 阅读(873) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2020.cnblogs.com/blog/2287326/202104/2287326-20210403132137769-736600354.png) ![](https://img2020.cnblogs.com/blog/2287326/202104/2287326-20210403132156349-1818018266.png) 阅读全文
posted @ 2021-04-03 13:22 FlowLiver 阅读(73) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2020.cnblogs.com/blog/2287326/202104/2287326-20210403131931780-1812091485.png) 阅读全文
posted @ 2021-04-03 13:20 FlowLiver 阅读(583) 评论(0) 推荐(0) 编辑
摘要: 以IDEA 2020.3.3为例 1.主题 2.代码字体,大小 ==3.安装翻译插件 阅读全文
posted @ 2021-04-01 17:13 FlowLiver 阅读(258) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> void print_arrs(const int *, int N); void sort_arrs(int *pInt, int N); constexpr int COUNT = 10; int search_data(const int *pInt, 阅读全文
posted @ 2021-03-30 19:25 FlowLiver 阅读(22) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> void print_arrs(const int *, int N); void sort_arrs(int *pInt, int N); int main() { int arr[] = {1, 3, 5, 7, 6, 2, 4, 9, 8, 0}; st 阅读全文
posted @ 2021-03-30 13:30 FlowLiver 阅读(16) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> void print_arrs(const int *, int N); void sort_arrs(int *pInt, int N); int main() { int arr[] = {1, 3, 5, 7, 6, 2, 4, 9, 8, 0}; st 阅读全文
posted @ 2021-03-30 13:06 FlowLiver 阅读(27) 评论(0) 推荐(0) 编辑