码迷,mamicode.com
首页 >  
搜索关键字:python long string    ( 244880个结果
Excel Sheet排序
Sub Sort_Sheets() Dim sCount As Integer, I As Integer, R As Integer ReDim Na(0) As String sCount = Sheets.Count For I = 1 To sCount ReDim Preserve Na( ...
分类:编程语言   时间:2021-04-27 14:27:14    阅读次数:0
ASP.NET Core中使用NLog记录日志
1:添加Nlog的组件 直接在NuGet里面搜索NLog.Web.AspNetCore 2:然后就是配置服务 public class Program { public static void Main(string[] args) { CreateHostBuilder(args).Build() ...
分类:Web程序   时间:2021-04-27 14:26:50    阅读次数:0
typescript 数组类型的定义
简单的定义 const numArr:number[]=[1,2,3] const strArr:string[]=['a','b','c'] const undeArr:undefined[]=[undefined,undefined] 数组中有字符串又有数组的类型 const arr:(numb ...
分类:编程语言   时间:2021-04-27 14:24:27    阅读次数:0
python入门
2.1 Hello Python程序 2.1.1 Python 源程序的基本概念 1.Python源程序就是一个特殊格式的文本文件,可以使用任意文本编辑软件做Python的开发 2.Python 程序的文件扩展名通都是.py 文本文件:没有任何的格式 在window下,能够使用记事本打开的文件 Li ...
分类:编程语言   时间:2021-04-27 14:23:00    阅读次数:0
【帆吖】Java学习零基础06
自增,自减&&逻辑运算符&&位运算符 1 package operator; 2 3 public class Demo4 { 4 public static void main(String[] args) { 5 //++ -- 自增 自减 一元运算符 6 int a=3; 7 8 int b= ...
分类:编程语言   时间:2021-04-27 14:20:46    阅读次数:0
M笔试
此博客链接: 题解: 找大写26个字母的位置,26个字母可以重复M个 输入为N M,N测试用例个数,M为字母重复个数, 输出字母和处于第几位 代码 public class leetcode { public static void main(String[] args) { Scanner sca ...
分类:其他好文   时间:2021-04-27 14:19:47    阅读次数:0
lightGBM Python API参考以及各参数意义
模型参数 参数名 参数描述 可选值 boosting_type 模型提升方式 'gbdt'、'dart'、'goss'、'rf' num_leaves 每个基学习器的最大叶子 默认31 max_depth 基学习器树的最大深度 默认-1,没有限制 learning_rate boosting学习率 ...
分类:编程语言   时间:2021-04-27 14:19:07    阅读次数:0
crontab调度示例
一些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
PyTorch——(6)2D函数优化实例
最小值点有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 程序的三种方式
解释器 python / python3 使用Python2.x解释器 S Python xxx.py 使用Python3.x解释器 S Python3 xxx.py 交互式运行 Python 程序 交互式:问答方式,输入一个语句,里面有结果返回 MySQL提供交互式命令行 进入交互式命令:Pyth ...
分类:编程语言   时间:2021-04-27 14:11:57    阅读次数:0
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!