创建数字列表 for value in range(1,5): print(value,end=" ")#1 2 3 4 print() #使用range可以生成一个指定范围的数字集合 numbers = list(range(2,7)) print(numbers)#[2, 3, 4, 5, 6] ...
分类:
其他好文 时间:
2020-07-07 13:08:44
阅读次数:
61
1.把doc文件复制到记事本里2.python代码asn_statu = 0asn_txt_list = []with open("D:/share/doc/38413.txt",encoding="gbk") as file: last_line = "" for line in file: if ...
分类:
其他好文 时间:
2020-07-07 13:07:23
阅读次数:
79
1.html 超文本标记语言(英语:HyperText Markup Language,简称:HTML)是一种用于创建网页的标准标记语言。 HTML 不是一种编程语言,而是一种标记语言。 在线工具:https://c.runoob.com/front-end/61 2.第一个html实例 <!DOC ...
分类:
Web程序 时间:
2020-07-07 13:02:30
阅读次数:
106
Lost and AekdyCoin are friends. They always play "number game"(A boring game based on number theory) together. We all know that AekdyCoin is the man c ...
分类:
编程语言 时间:
2020-07-07 12:52:15
阅读次数:
93
1、扁平化n维数组 1.终极篇 [1,[2,3]].flat(1) //[1,2,3][1,[2,3,[4,5]].flat(1) //[1,2,3,4,5][1,[2,3,[4,5]]].toString() //'1,2,3,4,5'[1[2,3,[4,5[...]].flat(Infinity ...
分类:
编程语言 时间:
2020-07-07 10:11:34
阅读次数:
78
In this lesson you will learn to present a proposal. 在这节课中,你将学习如何提出一个建议。 课上内容(Lesson) (be)low an energy bargain(n.) n. 交易;便宜货;契约 haggle(v.) proposal(n ...
分类:
其他好文 时间:
2020-07-07 10:06:10
阅读次数:
59
清除统一统计信息, 统计审计不支持直接drop 基表 SYS@ORCLCDB> alter table AUDSYS.AUD$UNIFIED drop partition AUD_UNIFIED_P0 ; alter table AUDSYS.AUD$UNIFIED drop partition A... ...
分类:
其他好文 时间:
2020-07-07 09:48:30
阅读次数:
114
Excel文档有.xls和.xlsx后缀的,当我们想把它们放在一个方法中进行读取excel文件时,有一个特别省事的做法: 1 public static List<String> Read(String path) throws IOException { 2 //调用read方法,传入你要读文件的 ...
分类:
编程语言 时间:
2020-07-07 09:30:37
阅读次数:
55
1、for循环 表示渲染{% for %}与{% endfor %}之间的所有内容,与python中的for循环类似。 {% for student in students %} <li>{{student.name}}</li> {% endfor %} ...
分类:
Web程序 时间:
2020-07-07 09:26:30
阅读次数:
295
create index audsys.idx_unified on audsys.AUD$UNIFIED(EVENT_TIMESTAMP) local tablespace sysaux; 创建本地组合前缀索引: EVENT_TIMESTAMP 是分区健 而在用视图UNIFIED_AUDIT_TR... ...
分类:
其他好文 时间:
2020-07-07 09:25:08
阅读次数:
62