上一页 1 ··· 100 101 102 103 104 105 106 107 108 ··· 180 下一页
摘要: #include <stdio.h> fun(int m) { if(m>0) fun(m-1); printf("%d ",m); } main() { int w=5; fun(w) ; getchar(); } 搜索 复制 阅读全文
posted @ 2022-04-02 06:59 myrj 阅读(37) 评论(0) 推荐(0) 编辑
摘要: def typeof(variate): type=None if isinstance(variate,int): type = "int" elif isinstance(variate,str): type = "str" elif isinstance(variate,float): typ 阅读全文
posted @ 2022-04-01 19:24 myrj 阅读(34) 评论(0) 推荐(0) 编辑
摘要: import multiprocessing from multiprocessing import Process,Lock,Manager from multiprocessing import Queue from multiprocessing import JoinableQueue #多 阅读全文
posted @ 2022-04-01 08:19 myrj 阅读(812) 评论(0) 推荐(0) 编辑
摘要: from multiprocessing import Process def chulibkk(bka,q): global connect,con for acc in acca: result=[] aty=str(acc["rootId"]) userid=str(acc['userId'] 阅读全文
posted @ 2022-03-31 12:14 myrj 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 详谈Mifare Classic 1K卡 0x00 前言 为啥要写这个文章?天气闷热,内心烦躁,水卡莫得钱了,喝不上水,充卡的人也不来,怎么办?干就完了 0x01 什么是Mifare Classic 1k卡 Mifare Classic 1K卡简称M1卡,属于非接触式射频卡。而与射频卡进行通讯的技术 阅读全文
posted @ 2022-03-28 19:30 myrj 阅读(2789) 评论(0) 推荐(0) 编辑
摘要: 1.树莓派安装VNC SERVER2.WIN10安装VNC VIEW3.WIN10打开realVNC--VNC VIEW 输入IP 用户名 密码 登录A WIN10发送文件到树莓派过程:4.点击第五个按钮:transfer files 5.打开如下窗口:6.点击send files选择WIN10中的 阅读全文
posted @ 2022-03-27 06:21 myrj 阅读(356) 评论(0) 推荐(0) 编辑
摘要: import datetime import time import pandas as pd import matplotlib.pyplot as plt data=pd.read_stata('pid去重后.dta') data1=data['post_time'].values.tolist 阅读全文
posted @ 2022-03-26 22:32 myrj 阅读(184) 评论(0) 推荐(0) 编辑
摘要: 匹配中文标点符号: [\u3002\uff1b\uff0c\uff1a\u201c\u201d\uff08\uff09\u3001\uff1f\u300a\u300b]匹配中文字符的正则表达式: [\u4e00-\u9fa5] import re s = "\n\r\t@#$%^&*这样一本书大卖, 阅读全文
posted @ 2022-03-26 14:43 myrj 阅读(1043) 评论(0) 推荐(0) 编辑
摘要: 【新手任务】 老板:我们做海外市场的,搞定投资商很重要。你去把境外投资企业(机构)全部给我复制下来。 任务.png 总共2606页,点下一页,然后再ctrl+C,然后Ctrl+V,准备着复制到天亮吧。扫视一圈,新来的实习生都回学校做毕业论文了。 【解决方案】 知识点:Python 3 基本语法,sp 阅读全文
posted @ 2022-03-25 07:01 myrj 阅读(522) 评论(0) 推荐(0) 编辑
摘要: 判断是否数字 print(str_1.isdigit()) 判断是否字母 print(str_1.isalpha()) 判断是否为数字和字母的组合 print(str_1.isalnum()) 判断是否为标点符号 import string punc = string.punctuation if 阅读全文
posted @ 2022-03-25 05:26 myrj 阅读(27) 评论(0) 推荐(0) 编辑
上一页 1 ··· 100 101 102 103 104 105 106 107 108 ··· 180 下一页