码迷,mamicode.com
首页 >  
搜索关键字:scores    ( 329个结果
字典常用方法
和列表、字符串一样,字典也内置了很多方法供我们使用。我们今天来介绍几个字典的常用方法。 keys() 用于获取字典中所有的 键。 scores = { '林黛玉': 95, '薛宝钗': 93, '贾宝玉': 78, '袭人': 85 } print(scores.keys()) # 输出:dict ...
分类:其他好文   时间:2020-07-07 10:12:42    阅读次数:71
第七章第四题(分析成绩)(Analyze scores) - 编程练习题答案
编写一个程序,读人个数不确定的考试分数,并且判断有多少个分数是大于或等于平均分,多少个分数是低于平均分的。输人一个负数表示输入的结束。假设最高分为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
sort() 和 reverse() 方法只是对原来的列表进行操作,不会生成新的列表——找bug
找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
reduce_mem_usage 降低内存使用 绘制学习率曲线和验证曲线
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入门实战(3)-命令行
本文主要介绍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使用Arrays.sort()升序和降序
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
数据库mysql高级
简介 实体与实体之间有3种对应关系,这些关系也需要存储下来 在开发中需要对存储的数据进行一些处理,用到内置的一些函数 视图用于完成查询语句的封装 事务可以保证复杂的增删改操作有效 关系 创建成绩表scores,结构如下 id 学生 科目 成绩 思考:学生列应该存什么信息呢? 答:学生列的数据不是在这 ...
分类:数据库   时间:2020-05-19 20:45:36    阅读次数:63
46数据库03——课后练习
练习:账号信息表,用户组,主机表,主机组 #用户表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
1075 PAT Judge
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
329条   上一页 1 2 3 4 ... 33 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!