上一页 1 ··· 107 108 109 110 111 112 113 114 115 ··· 188 下一页
摘要: #include <stdio.h> int zx(int m[],int a,int xx)//xx=1 正序 xx=0倒序 { int b,c,t; for(b=0;b<a;b++) for(c=0;c<a-b-1;c++) { if(m[c]>m[c+1] && xx==1) t=m[c],m 阅读全文
posted @ 2022-04-16 16:31 myrj 阅读(935) 评论(0) 推荐(0)
摘要: df.drop(df.tail(n).index) #从尾部去掉 n 行df.dorp(df.head(n).index) #从头去掉 n 行#可以加上 inplace=True 直接修改原 dataFrame,不过函数返回是 None也可以这样子 PageDF = PageDF[:-1] 阅读全文
posted @ 2022-04-15 11:23 myrj 阅读(3104) 评论(0) 推荐(0)
摘要: import pandas as pd import csv,sys,time,os def excel_one_line_to_list(file,m=1): df=pd.read_excel(file,usecols=[1],names=None)#读取项目名称不要列名 #n=df.shape[ 阅读全文
posted @ 2022-04-15 06:40 myrj 阅读(357) 评论(0) 推荐(0)
摘要: #include <stdio.h> void px(int a[],int n) { int i,j,t; for(i=0;i<n-1;i++) { for(j=0;j<n-1;j++) { if(a[j]>a[j+1]) { t=a[j]; a[j]=a[j+1]; a[j+1]=t; } } 阅读全文
posted @ 2022-04-13 20:24 myrj 阅读(291) 评论(0) 推荐(0)
摘要: @echo off cd\ cd C:\Program Files (x86)\gakataka\Student Student.exe aa.vbs: set ws=WScript.CreateObject("WScript.Shell") ws.Run"c:\intel\aax.bat",0 建 阅读全文
posted @ 2022-04-12 16:27 myrj 阅读(123) 评论(0) 推荐(0)
摘要: a-3 掩码破解a-6 字典+掩码 hashcat -m 22000 tian.hc22000 -a 6 password.txt ?d?d?d -w 3 -O -D 2 well-spaced131 -> well-summarized131: well-spaced471 -> well-sum 阅读全文
posted @ 2022-04-11 21:39 myrj 阅读(313) 评论(0) 推荐(0)
摘要: hashcat -m 22000 1817_1649503015.hc22000 -a 3 ?a?a?a?d?d?d?d?d -w 3 -O -D 2hashcat -m 22000 1817_1649503015.hc22000 -a 3 ?l?l?l?d?d?d?d?d -w 3 -O -D 2 阅读全文
posted @ 2022-04-10 16:48 myrj 阅读(3882) 评论(0) 推荐(0)
摘要: #include <stdio.h> int pd(int a=10,int b=20)//C语言中是有语法问题 此文件保存为aa.cpp { return a+b; } int main() { printf("%d",pd(10,30)); return 0; } #include <stdio 阅读全文
posted @ 2022-04-08 15:49 myrj 阅读(94) 评论(0) 推荐(0)
摘要: During handling of the above exception, another exception occurred: 处理方法: cmd:netstat -ano找到被占用的端口,找右边对应的PID 5062tasklist|findstr "5062"显示对应的进程名称:pyth 阅读全文
posted @ 2022-04-07 16:49 myrj 阅读(1879) 评论(0) 推荐(0)
摘要: countif(b2:b24,b2)只能准确比较前15位 countif(b2:b24,b2&"*")可以比较超过15位 16 17 18位更多 搜索 复制 阅读全文
posted @ 2022-04-05 18:21 myrj 阅读(1056) 评论(0) 推荐(0)
上一页 1 ··· 107 108 109 110 111 112 113 114 115 ··· 188 下一页