码迷,mamicode.com
首页 >  
搜索关键字:python list tuple    ( 183691个结果
Maredown学习 随笔
| # Maredown学习 | | | | ## 标题 | | | | ### 三级标题 | | | | | | | | ## 字体 | | | | ## 引用 | | | | > 狂神 | | | | ## 分割线 | | | | | | | | *** | | | | | | | | ## 图 ...
分类:其他好文   时间:2021-06-17 17:14:28    阅读次数:0
centos8.2 时间同步
==时区修改== 查看当前时区:date 查看时区列表:timedatectl list-timezones 修改时区:timedatectl set-timezone Asia/Shanghai ==配置文件== centos8已经没有ntp时间同步服务了,使用的是chrony。 配置文件:vim ...
分类:其他好文   时间:2021-06-17 17:09:13    阅读次数:0
MySQL进行 批量插入,批量删除,批量更新,批量查询
1、批量插入 ServiceImpl层 List<Person> addPeople = new ArrayList<>(); //addPeople存放多个Person对象 personMapper.insetPeopleReturnIds(addPeople); Dao层接口(这里的注解para ...
分类:数据库   时间:2021-06-17 17:02:57    阅读次数:0
python 日志logging设置按天进行保存,保存近7天,过期日志自动清理
参考文章(写的很详细):https://www.cnblogs.com/xujunkai/p/12364619.html 前言: 跑接口自动化或者其他程序运行时,如果只能保存一份log文件,可能会存在,log文件越来越大的问题,加载缓慢,查找日志也比较慢,增加日志根据天来保存,定期清理日志,可以达到 ...
分类:编程语言   时间:2021-06-17 17:02:45    阅读次数:0
ntp时间同步
1:开机同步 开机时自动同步可编辑 /etc/ntp/step-tickers 文件 1 vim /etc/ntp/step-tickers 2 3 # List of NTP servers used by the ntpdate service. 4 5 ntp.aliyun.com 6 tim ...
分类:其他好文   时间:2021-06-17 16:54:51    阅读次数:0
glob文件操作函数
glob文件操作函数 glob是python自带的一个操作文件的相关模块,由于模块功能比较少,所以很容易掌握。用它可以查找符合特定规则的文件路径名。使用该模块查找文件,只需要用到: “*”, “?”, “[]”这三个匹配符; ”*”匹配0个或多个字符; ”?”匹配单个字符; ”[]”匹配指定范围内的 ...
分类:其他好文   时间:2021-06-17 16:51:21    阅读次数:0
python中max 与lambda函数联用
python中max 与lambda函数联用 dic={'k1':10,'k2':100,'k3':30} print(dic[max(dic,key=lambda k:dic[k])]) #输出结果为100 当看到*max(dic,key=lambda k:dic[k])*时懵逼了,这怎么比大小, ...
分类:编程语言   时间:2021-06-17 16:43:38    阅读次数:0
876. 链表的中间结点
1 /** 2 * Definition for singly-linked list. 3 * struct ListNode { 4 * int val; 5 * struct ListNode *next; 6 * }; 7 */ 8 9 10 struct ListNode* middleN ...
分类:其他好文   时间:2021-06-16 18:35:48    阅读次数:0
今日份奇思妙想——根据权重负载均衡
public class WeightProcessor { private final Map<Integer, List<String>> map = new HashMap<>(); //保存权重值和地址 private final Integer[] weight; //保存权重值,用于负载 ...
分类:其他好文   时间:2021-06-16 18:35:22    阅读次数:0
Python学习(二)
操作列表 遍历列表 fruits = ['apple','banana','pear'] for fruit in fruits: print(fruit) #缩进表示在循环体内 print('done!') #不缩进是循环体外,避免缩进错误 使用range()创建数字列表 numbers = li ...
分类:编程语言   时间:2021-06-16 18:34:11    阅读次数:0
183691条   上一页 1 ... 32 33 34 35 36 ... 18370 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!