和列表、字符串一样,字典也内置了很多方法供我们使用。我们今天来介绍几个字典的常用方法。 keys() 用于获取字典中所有的 键。 scores = { '林黛玉': 95, '薛宝钗': 93, '贾宝玉': 78, '袭人': 85 } print(scores.keys()) # 输出:dict ...
分类:
其他好文 时间:
2020-07-07 10:12:42
阅读次数:
71
编写一个程序,读人个数不确定的考试分数,并且判断有多少个分数是大于或等于平均分,多少个分数是低于平均分的。输人一个负数表示输入的结束。假设最高分为100。 Write a program that reads an unspecified number of scores and determine ...
分类:
其他好文 时间:
2020-07-05 09:18:48
阅读次数:
83
test_scores = [100, 97, 76, 84, 93, 98, 86, 92, 76, 88, 95, 90, 95, 93] print(test_scores[14]) # 报错:IndexError: list index out of range # (索引错误:超出列表范围 ...
分类:
其他好文 时间:
2020-07-04 13:22:17
阅读次数:
87
找bug 看例子: test_scores = [100, 97, 76, 84, 93, 98, 86, 92, 76, 88, 95, 90, 95, 93] new_scores = test_scores.sort() new_scores = new_scores.reverse() pr ...
分类:
其他好文 时间:
2020-07-04 13:11:41
阅读次数:
80
def reduce_mem_usage(df): """ iterate through all the columns of a dataframe and modify the data type to reduce memory usage. """ start_mem = df.memor ...
分类:
其他好文 时间:
2020-06-25 21:10:13
阅读次数:
70
本文主要介绍redis命令行的使用,使用到的软件版本:Java 1.8.0_191、Redis 5.0.8、Centos 7.6。 1、redis-cli语法 redis-cli默认在安装安装目录的src下,语法如下: redis-cli [OPTIONS] [cmd [arg [arg ...]] ...
分类:
其他好文 时间:
2020-06-13 12:55:09
阅读次数:
57
java中对数组进行排序 使用Array.sort() 这个默认是升序 @Test public void index4(){ int scores[] = new int[]{1,2,3,89,4}; Arrays.sort(scores); for (int i:scores ) { Syste ...
分类:
编程语言 时间:
2020-06-07 19:17:31
阅读次数:
205
简介 实体与实体之间有3种对应关系,这些关系也需要存储下来 在开发中需要对存储的数据进行一些处理,用到内置的一些函数 视图用于完成查询语句的封装 事务可以保证复杂的增删改操作有效 关系 创建成绩表scores,结构如下 id 学生 科目 成绩 思考:学生列应该存什么信息呢? 答:学生列的数据不是在这 ...
分类:
数据库 时间:
2020-05-19 20:45:36
阅读次数:
63
练习:账号信息表,用户组,主机表,主机组 #用户表create table user(id int not null unique auto_increment,username varchar(20) not null,password varchar(50) not null,primary k ...
分类:
数据库 时间:
2020-05-05 17:48:23
阅读次数:
78
The ranklist of PAT is generated from the status list, which shows the scores of the submissions. This time you are supposed to generate the ranklist ...
分类:
其他好文 时间:
2020-04-30 23:17:34
阅读次数:
62