上一页 1 ··· 101 102 103 104 105 106 107 108 109 ··· 180 下一页
摘要: 函数:startswith()作用:判断字符串是否以指定字符或子字符串开头一、函数说明语法:string.startswith(str, beg=0,end=len(string)) 或string[beg:end].startswith(str) 参数说明:string: 被检测的字符串str: 阅读全文
posted @ 2022-03-25 05:22 myrj 阅读(772) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> int hw(int x) { int a=x,b=0,c; while(a>0) { b=b*10+a%10; a=a/10; } if(b==x) return 1; else return 0; } main() { int a,b,c; for(a=10 阅读全文
posted @ 2022-03-24 22:32 myrj 阅读(361) 评论(0) 推荐(0) 编辑
摘要: https://github.com/ keylogger 搜索 复制 阅读全文
posted @ 2022-03-23 06:43 myrj 阅读(315) 评论(0) 推荐(0) 编辑
摘要: 是否需要在Python中使用密码或私钥加密某些文本? 您当然来对了地方。 AES-256是一种固态对称密码,通常用于为自己加密数据。 换句话说,正在加密数据的同一个人通常也将其解密(请考虑密码管理器 )。 依存关系 对于本教程,我们将使用Python 3,因此请确保安装pycryptodome ,这 阅读全文
posted @ 2022-03-23 05:48 myrj 阅读(1625) 评论(0) 推荐(0) 编辑
摘要: base64 Base64编码,64指A-Z、a-z、0-9、+和/这64个字符,还有“=”号不属于编码字符,而是填充字符。为什么发明这么个编码呢,这个编码的原理很简单,“破解”也很容易,原因是电子邮件刚出来的时候,只传递英文字符,这没有问题,但是后来,中国人,日本人都要发email,这样问题就来了 阅读全文
posted @ 2022-03-23 05:43 myrj 阅读(635) 评论(0) 推荐(0) 编辑
摘要: from PyQt5.QtWidgets import QWidget, QApplication, QPushButton, QTextEdit, QCheckBox, QLabel, QFileDialog from PyQt5.QtGui import QIcon import sys imp 阅读全文
posted @ 2022-03-22 21:42 myrj 阅读(67) 评论(0) 推荐(0) 编辑
摘要: 通过AES256进行模糊处理 解密AES256 c:\Anaconda32\envs\myenv\Scripts\pyinstaller.exe --distpath=./dist/win32 --workpath=./build/win32 --uac-admin --uac-uiaccess - 阅读全文
posted @ 2022-03-22 21:12 myrj 阅读(297) 评论(0) 推荐(0) 编辑
摘要: """ Add the `Makespec` options to a option-parser instance or a option group. """ g = parser.add_argument_group('What to generate') g.add_argument( "- 阅读全文
posted @ 2022-03-22 20:09 myrj 阅读(250) 评论(0) 推荐(0) 编辑
摘要: import ntplib import os,datetime hosts = ['0.cn.pool.ntp.org','1.cn.pool.ntp.org','2.cn.pool.ntp.org','3.cn.pool.ntp.org'] hosts=['ntp.aliyun.com','nt 阅读全文
posted @ 2022-03-20 09:50 myrj 阅读(439) 评论(0) 推荐(0) 编辑
摘要: def get_web_now_timea(time_format='YYYY-MM-DD HH:mm:ss.SSSSSS'): """ 获取网络时间,返回时间格式:2019-12-13 11:39:48.398 :param time_format:控制返回字符串的格式,默认为:'YYYY-MM- 阅读全文
posted @ 2022-03-20 09:32 myrj 阅读(375) 评论(0) 推荐(0) 编辑
上一页 1 ··· 101 102 103 104 105 106 107 108 109 ··· 180 下一页