上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 37 下一页
摘要: 版本1 # -*- coding: utf-8 -*- import time import paramiko import sys import re from tenacity import retry, stop_after_attempt, wait_fixed import functoo 阅读全文
posted @ 2021-08-16 11:02 该显示昵称已被使用了 阅读(320) 评论(0) 推荐(0) 编辑
摘要: Termux https://blog.csdn.net/weixin_44706011/article/details/103399250 Qpython https://github.com/qpython-android/qpython3/releases 阅读全文
posted @ 2021-08-15 19:24 该显示昵称已被使用了 阅读(60) 评论(0) 推荐(0) 编辑
摘要: 01.npm install http-server -g全局安装 02.在要打开的项目文件夹处打开命令窗口,输入 hs -o回车 【hs 目录 -a 地址 -p 端口】,https://github.com/http-party/http-server 03.将对应的网址复制到浏览器打开 注意点: 阅读全文
posted @ 2021-08-09 22:04 该显示昵称已被使用了 阅读(119) 评论(0) 推荐(0) 编辑
摘要: for(var key in data)循环遍历函数 1.获取对象中的键(key)与值(value): var data = {name:'小花',age:'17岁',sex:'男'}; for (var a in data) { console.log(a); /*属性名*/ console.lo 阅读全文
posted @ 2021-08-08 21:05 该显示昵称已被使用了 阅读(529) 评论(0) 推荐(0) 编辑
摘要: 本质类似 阅读全文
posted @ 2021-08-08 20:51 该显示昵称已被使用了 阅读(10) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qq_41853758/article/details/83280104 和【reduce】配合合并【多个】df # 原生的merge只能合并两个 from functools import reduce df_tables = [df1, df2, df 阅读全文
posted @ 2021-08-03 16:29 该显示昵称已被使用了 阅读(68) 评论(0) 推荐(0) 编辑
摘要: 基础知识 # 1. response的属性 import requests response=requests.get("http://www.baidu.com/") print(response) # <Response [200]> print(type(response)) # <class 阅读全文
posted @ 2021-08-03 11:01 该显示昵称已被使用了 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 列表拆分成小列表 l = [i for i in range(16)] n = 3 #大列表中几个数据组成一个小列表 print([l[i:i + n] for i in range(0, len(l), n)]) print([i for i in range(0, len(l), n)]) 使用 阅读全文
posted @ 2021-07-31 16:33 该显示昵称已被使用了 阅读(55) 评论(0) 推荐(0) 编辑
摘要: 1. pip install xlwings https://zhuanlan.zhihu.com/p/82783751?utm_source=wechat_session&utm_medium=social&utm_oi=1087267078251094016&utm_campaign=share 阅读全文
posted @ 2021-07-28 17:38 该显示昵称已被使用了 阅读(120) 评论(0) 推荐(0) 编辑
摘要: window + R,输入regedit回车进入注册表 进入如下目录 HKEY_CLASSES_ROOT\Directory\Background\shell 在Shell下面建立文件 阅读全文
posted @ 2021-07-28 10:46 该显示昵称已被使用了 阅读(68) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 37 下一页