上一页 1 ··· 105 106 107 108 109 110 111 112 113 ··· 180 下一页
摘要: int m=sizeof(bc)/sizeof(bc[0]),d ; printf("%d ",m) ; 阅读全文
posted @ 2022-02-21 09:29 myrj 阅读(117) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> main() { int a; scanf("%d",&a); printf("%d",hea(a)); getchar(); } int hea(int a) { int b,gs=0; for(b=1;b<=a;b++) if(b%3==0 && b%10= 阅读全文
posted @ 2022-02-21 08:34 myrj 阅读(11) 评论(0) 推荐(0) 编辑
摘要: def headx(aab): ab=[] ax1=aab.split('\n') for i in ax1: ax2=i.split('\t') ab.append((ax2[0],ax2[1])) tt=dict(ab) return tt head1=headx(aab) print(head 阅读全文
posted @ 2022-02-20 11:03 myrj 阅读(49) 评论(0) 推荐(0) 编辑
摘要: import time def get_second(): """ :return: 获取精确到秒时间戳,10位 """ return int(time.time()) def get_millisecond(): """ :return: 获取精确毫秒时间戳,13位 """ millis = in 阅读全文
posted @ 2022-02-19 20:00 myrj 阅读(478) 评论(0) 推荐(0) 编辑
摘要: import datetime, time # -*- coding: utf-8 -*- def get_time_stamp13(datetime_obj): import datetime, time # 生成13时间戳 eg:1557842280000 datetime_str = date 阅读全文
posted @ 2022-02-18 19:37 myrj 阅读(1553) 评论(0) 推荐(0) 编辑
摘要: https://www.realvnc.com/en/connect/download/viewer/下载VNC 根据ip登录 搜索 复制 阅读全文
posted @ 2022-02-15 22:47 myrj 阅读(28) 评论(0) 推荐(0) 编辑
摘要: BAT文件内容: netsh wlan show profile set /p wifiName=请输入要查看密码的WIFI名: echo %wifiName% netsh wlan export profile name=%wifiName% folder=. key=clear :: 打开文件 阅读全文
posted @ 2022-02-15 22:10 myrj 阅读(214) 评论(0) 推荐(0) 编辑
摘要: https://h5api.m.goofish.com/h5/mtop.taobao.idle.mach.advertise.batch.output/1.0/?jsv=2.6.1&appKey=12574478&t=1645101246629&sign=ad4ebcdb386e847155f72f 阅读全文
posted @ 2022-02-15 20:48 myrj 阅读(364) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/env python # -*- coding: utf-8 -*- #文件内容修改后其对应的MD5值也改变,从而可以利用MD5值判断文件是否被修改过 import sys import hashlib import hashlib def get_file_md5(file_ 阅读全文
posted @ 2022-02-15 17:32 myrj 阅读(216) 评论(0) 推荐(0) 编辑
摘要: 列出从数字1,2,3,4中任取3个数的所有排列与组合 实现import itertools # 排列(有序)my_list = list(itertools.permutations([1, 2, 3, 4], 3))print(my_list)# 组合(无序)my_list = list(iter 阅读全文
posted @ 2022-02-15 17:23 myrj 阅读(116) 评论(0) 推荐(0) 编辑
上一页 1 ··· 105 106 107 108 109 110 111 112 113 ··· 180 下一页