一、JS数组 JavaScript中的数组类似于Python的列表 1 a = [11,22,33,44] 常见功能: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 obj.length 数组的大小 obj.push(ele) 尾部追加元素 obj.pop() 尾部获 ...
分类:
编程语言 时间:
2021-04-27 14:54:14
阅读次数:
0
import pandas as pd import os import re path = "./files/" files = os.listdir(path) # 用于存放Excel,里面的每个元素类型为:pandas.core.frame.DataFrame list_excel = [] ...
分类:
编程语言 时间:
2021-04-27 14:43:38
阅读次数:
0
上一篇讲了用 python 提取字符串中的数字,这次用VBA来事项。总体思路和 python 是一样的,代码如下: Option Explicit Sub GetNumbers() Dim from_string As String, convert_numbers As String Dim i, ...
分类:
编程语言 时间:
2021-04-27 14:37:45
阅读次数:
0
异步 asyncio、async、await 异步非阻塞 tronado、fastapi、django3.x asgi、sanic、aiohttp都在异步——>提升性能 协程 asyncio模块进行异步编程 实战案例 1.协程 协程不是计算机提供的,是程序员人为创造的。 协程(Coroutine), ...
分类:
编程语言 时间:
2021-04-27 14:36:58
阅读次数:
0
字符串时间转datetime时间 from datetime import datetime b='2021-04-26 11:23:56' c = datetime.strptime(b, "%Y-%m-%d %H:%M:%S") print(c) # datetime.datetime(2021 ...
分类:
编程语言 时间:
2021-04-27 14:35:01
阅读次数:
0
2.1 Hello Python程序 2.1.1 Python 源程序的基本概念 1.Python源程序就是一个特殊格式的文本文件,可以使用任意文本编辑软件做Python的开发 2.Python 程序的文件扩展名通都是.py 文本文件:没有任何的格式 在window下,能够使用记事本打开的文件 Li ...
分类:
编程语言 时间:
2021-04-27 14:23:00
阅读次数:
0
模型参数 参数名 参数描述 可选值 boosting_type 模型提升方式 'gbdt'、'dart'、'goss'、'rf' num_leaves 每个基学习器的最大叶子 默认31 max_depth 基学习器树的最大深度 默认-1,没有限制 learning_rate boosting学习率 ...
分类:
编程语言 时间:
2021-04-27 14:19:07
阅读次数:
0
一些crontab调度示例 10 6 * * * root reboot 10 7 * * * python /root/confluence_backup.py */5 * * * * flock -xn /tmp/stargate.lock -c '/usr/local/qcloud/starg ...
分类:
其他好文 时间:
2021-04-27 14:12:22
阅读次数:
0
最小值点有4个 import numpy as np from mpl_toolkits.mplot3d import Axes3D from matplotlib import pyplot as plt import torch def himmelblau(x): return (x[0] * ...
分类:
其他好文 时间:
2021-04-27 14:12:10
阅读次数:
0
解释器 python / python3 使用Python2.x解释器 S Python xxx.py 使用Python3.x解释器 S Python3 xxx.py 交互式运行 Python 程序 交互式:问答方式,输入一个语句,里面有结果返回 MySQL提供交互式命令行 进入交互式命令:Pyth ...
分类:
编程语言 时间:
2021-04-27 14:11:57
阅读次数:
0