上一页 1 ··· 53 54 55 56 57 58 59 60 61 ··· 188 下一页
摘要: pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pyexecjs import execjs 阅读全文
posted @ 2023-03-07 06:55 myrj 阅读(74) 评论(0) 推荐(0)
摘要: 1.打开闲鱼,设置 2.“全局自动回复设置” 3.设置相应的信息 4.“开启所有宝贝自动回复 阅读全文
posted @ 2023-03-06 20:45 myrj 阅读(713) 评论(0) 推荐(0)
摘要: #include <stdio.h> //编写一个程序,输入一个整数n,判断其是否为完数 //如果一个数等于它的因子之和,则称该数为完数或完全数 //例如6=1+2+3,因此6是完数 main() { int i,n,s; s=1; printf("请输入一个整数:"); scanf("%d",&n 阅读全文
posted @ 2023-03-06 20:34 myrj 阅读(1259) 评论(0) 推荐(0)
摘要: transformers Hugging Face点击Create new secret key按钮即可。API Key目前都是以sk-开头的。要注意的是,创建后应该立即复制并妥善保存API Key。因为OpenAI为了保证API Key的安全,只在创建API Key时才会完整显示API Key,如 阅读全文
posted @ 2023-03-06 19:49 myrj 阅读(696) 评论(0) 推荐(0)
摘要: #include<stdio.h> //用固定位置的数与其他数比较 main() { int a[10]={88,2,3,4,5,6,100,33,58,0},i,j,t,c; for(i=0;i<10;i++) for(j=i+1;j<10;j++) if(a[i]>a[j]) { t=a[j]; 阅读全文
posted @ 2023-03-06 14:18 myrj 阅读(59) 评论(0) 推荐(0)
摘要: sysuse auto, clear tab mpg,m recode mpg (10/19=.) (20/29=2) (30/39=6) (40/49=10) tab mpg,m 阅读全文
posted @ 2023-03-06 11:33 myrj 阅读(200) 评论(0) 推荐(0)
摘要: webuse auto, clear //1.删除mpg重复的数据,只保留一行,结果每行的mpg值不相同 duplicates drop mpg,force //方法2: bys mpg:gen filter=_n keep if filter==1 阅读全文
posted @ 2023-03-06 11:28 myrj 阅读(254) 评论(0) 推荐(0)
摘要: webuse auto, clear brow isid price isid mpg sample 10 //修改变量名price的标签 label variable price "my price" label variable foreign "Car originz" //删除指定变量tur 阅读全文
posted @ 2023-03-06 10:31 myrj 阅读(4497) 评论(0) 推荐(0)
摘要: #include <stdio.h> //求任意两个数的最小公倍数 main() { int a,b,i; scanf("%d%d",&a,&b); for(i=a;i<=a*b;i++) if(i%a==0 && i%b==0) { printf("%d %d的最小公倍数为:%d\n",a,b,i 阅读全文
posted @ 2023-03-05 20:35 myrj 阅读(268) 评论(0) 推荐(0)
摘要: //替换所有空格 //下面语句结果为4 disp length(subinstr(" 123 3 "," ","",.)) //itrim(s) 将字符间多于一个空格缩减为一个空格,对首尾空格不起作用 disp length(itrim(" 123 3 ")) 替换变量中的中文符号 replace 阅读全文
posted @ 2023-03-05 19:46 myrj 阅读(2485) 评论(0) 推荐(0)
上一页 1 ··· 53 54 55 56 57 58 59 60 61 ··· 188 下一页