摘要:
版本1 # -*- coding: utf-8 -*- import time import paramiko import sys import re from tenacity import retry, stop_after_attempt, wait_fixed import functoo 阅读全文
摘要:
Termux https://blog.csdn.net/weixin_44706011/article/details/103399250 Qpython https://github.com/qpython-android/qpython3/releases 阅读全文
摘要:
01.npm install http-server -g全局安装 02.在要打开的项目文件夹处打开命令窗口,输入 hs -o回车 【hs 目录 -a 地址 -p 端口】,https://github.com/http-party/http-server 03.将对应的网址复制到浏览器打开 注意点: 阅读全文
摘要:
for(var key in data)循环遍历函数 1.获取对象中的键(key)与值(value): var data = {name:'小花',age:'17岁',sex:'男'}; for (var a in data) { console.log(a); /*属性名*/ console.lo 阅读全文
摘要:
本质类似 阅读全文
摘要:
https://blog.csdn.net/qq_41853758/article/details/83280104 和【reduce】配合合并【多个】df # 原生的merge只能合并两个 from functools import reduce df_tables = [df1, df2, df 阅读全文
摘要:
基础知识 # 1. response的属性 import requests response=requests.get("http://www.baidu.com/") print(response) # <Response [200]> print(type(response)) # <class 阅读全文
摘要:
列表拆分成小列表 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)]) 使用 阅读全文