上一页 1 ··· 33 34 35 36 37 38 39 40 41 ··· 186 下一页
摘要: import OpenSSLModuleNotFoundError: No module named 'OpenSSL' pip install pyopenssl 阅读全文
posted @ 2023-04-22 21:26 myrj 阅读(684) 评论(0) 推荐(0)
摘要: program mysum, rclass syntax varname return local varname `varlist' tempvar new quietly { count if !missing(`varlist') return scalar N = r(N) gen doub 阅读全文
posted @ 2023-04-22 11:15 myrj 阅读(27) 评论(0) 推荐(0)
摘要: Traceback (most recent call last): File "D:/statashu/dustata1.py", line 4, in <module> subprocess.call(cmd) File "D:\Python37\lib\subprocess.py", line 阅读全文
posted @ 2023-04-22 09:32 myrj 阅读(1277) 评论(0) 推荐(0)
摘要: // sfi.Macro提供对Stata宏的访问。 // // 参数 内容 getGlobal(Name) 获取全局宏的内容 getLocal(Name) 获取局部宏的内容 setGlobal(name, value[, vtype]) 设置全局宏的值 setLocal(name, value) 设 阅读全文
posted @ 2023-04-22 05:45 myrj 阅读(34) 评论(0) 推荐(0)
摘要: #include<stdio.h> #求正整数的所有质数因子(如:180:2 2 3 3 5) main() { int m,i; scanf("%d",&m); for(i=2;i<=m;i++) { if(m%i==0) { printf("%3d",i); m=m/i; i=i-1; } } 阅读全文
posted @ 2023-04-20 20:06 myrj 阅读(332) 评论(0) 推荐(0)
摘要: #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 阅读(165) 评论(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 阅读(174) 评论(0) 推荐(0)
摘要: 国内免费GPT https://chat.tuxiaozhi.com/?bd_vid=11464506001370123049 阅读全文
posted @ 2023-04-20 10:05 myrj 阅读(510) 评论(0) 推荐(0)
摘要: 全国 阅读全文
posted @ 2023-04-20 07:57 myrj 阅读(12) 评论(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 阅读(1055) 评论(0) 推荐(0)
上一页 1 ··· 33 34 35 36 37 38 39 40 41 ··· 186 下一页