上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 181 下一页
摘要: #include <stdio.h> #include <string.h> void del_str(char a[],int n) { while(a[n-1]=a[n])n++; } main() { char a[]="adsfasd"; int n=3; del_str(a,n); put 阅读全文
posted @ 2023-04-20 16:16 myrj 阅读(107) 评论(0) 推荐(0) 编辑
摘要: with open('file.txt', 'r') as f: lines = f.readlines() with open('file.txt', 'w') as f: for line in lines: if line.strip(): f.write(line) 首先,我们使用`open 阅读全文
posted @ 2023-04-20 10:07 myrj 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 国内免费GPT https://chat.tuxiaozhi.com/?bd_vid=11464506001370123049 阅读全文
posted @ 2023-04-20 10:05 myrj 阅读(502) 评论(0) 推荐(0) 编辑
摘要: 全国 阅读全文
posted @ 2023-04-20 07:57 myrj 阅读(8) 评论(0) 推荐(0) 编辑
摘要: AttributeError: module 'lib' has no attribute 'X509_V_FLAG_CB_ISSUER_CHECK' 安装gallery-dl时出的提示: 解决方法: pip uninstall pyopenssl pip uninstall gallery-dl 阅读全文
posted @ 2023-04-20 07:30 myrj 阅读(978) 评论(0) 推荐(0) 编辑
摘要: Stata相关结果,一般留存值或者存储的返回值,主要分为4类,分别为:e-class,r-class,s-class,c-class cret list sret list retu list eret list macro list query 阅读全文
posted @ 2023-04-19 11:25 myrj 阅读(38) 评论(0) 推荐(0) 编辑
摘要: 注意:红色字体表示使用时需要结合实际进行修改的内容 【1】直接导入csv格式数据insheet using name.csv, clear 【2】修改变量长度 format var %20.2g 【3】删除重复值 sort var1 var2 duplicatesdrop var1 var2, fo 阅读全文
posted @ 2023-04-19 10:41 myrj 阅读(249) 评论(0) 推荐(0) 编辑
摘要: 在一维数组中,数组名表示的是数组第一个元素的地址int a[10],*p=a; 那么二维数组呢int a[3][4], a 表示的是元素 a[0][0] 的地址吗?不是!二维数组就是一维数组,二维数组 a[3][4] 就是有三个元素 a[0]、a[1]、a[2] 的一维数组,所以数组 a 的第一个元 阅读全文
posted @ 2023-04-19 10:30 myrj 阅读(272) 评论(0) 推荐(0) 编辑
摘要: use cgss\cgss2015,clear local ci=0 local cc "" foreach v of varlist _all{ cap confirm string variable `v' if !_rc{ local ci=`ci'+1 local cc="`cc'"+" " 阅读全文
posted @ 2023-04-19 08:07 myrj 阅读(369) 评论(0) 推荐(0) 编辑
摘要: webuse auto,clear g var2=. capture confirm string variable make if !_rc{ replace var2=1 } else{ replace var2=0 } 阅读全文
posted @ 2023-04-19 07:50 myrj 阅读(32) 评论(0) 推荐(0) 编辑
上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 181 下一页