上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 29 下一页
摘要: 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 阅读全文
posted @ 2019-09-01 00:43 睿晞 阅读(196) 评论(0) 推荐(0) 编辑
摘要: 1.函数用途含义 Python startswith() 方法用于检查字符串是否是以指定子字符串开头,如果是则返回 True,否则返回 False。如果参数 beg 和 end 指定值,则在指定范围内检查。 2.用法 Str是需要匹配的字符串 str是待检测子字符串 beg默认为0表示从第一个字符开 阅读全文
posted @ 2019-08-29 20:54 睿晞 阅读(3816) 评论(0) 推荐(0) 编辑
摘要: 1055 The World's Richest (25 分) Forbes magazine publishes every year its list of billionaires based on the annual ranking of the world's wealthiest pe 阅读全文
posted @ 2019-08-29 20:42 睿晞 阅读(181) 评论(0) 推荐(0) 编辑
摘要: Seminar Schedule (C2017 | 2019.9 12 | 3rd semester S0500783) +++++++++++++++++++++ + Time: Friday, 16:10 17:40 + + Venue: 3 501 + ++++++++++++++++++++ 阅读全文
posted @ 2019-08-27 19:12 睿晞 阅读(297) 评论(0) 推荐(0) 编辑
摘要: 1.用Python通过csv文件里面的某一列,形成键值,然后统计键在其他列出现的次数。 2.与1类似的操作,具体有一些细节变动,代码中有注释 3.将大数据的csv文件根据特定条件分成几份小文件 coding = utf 8 import pandas as pd import csv def get 阅读全文
posted @ 2019-08-25 07:25 睿晞 阅读(914) 评论(0) 推荐(0) 编辑
摘要: 1.Pandas对数据某一列删除 2.Pandas之修改列名 3.pandas操作csv多个列,生成新的列 4.pandas去除文件中的重复项 subset : column label or sequence of labels, optional 用来指定特定的列,默认所有列 keep : {‘ 阅读全文
posted @ 2019-08-23 12:06 睿晞 阅读(10930) 评论(0) 推荐(1) 编辑
摘要: 前言 1. "一.Python文件读取" 2. "二、读取CSV文件" 一.Python文件读取 1. open函数是内置函数之with操作 file: 必需,文件路径(相对或者绝对路径)。 mode: 可选,文件打开模式 buffering: 设置缓冲 encoding: 一般使用utf8 err 阅读全文
posted @ 2019-08-22 16:36 睿晞 阅读(14964) 评论(1) 推荐(6) 编辑
摘要: Excel can sort records according to any column. Now you are supposed to imitate this function. Input Specification: Each input file contains one test 阅读全文
posted @ 2019-08-11 23:19 睿晞 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 1.首先在函数内部声明的就是局部变量,只能够在函数内部或者代码块内使用。 2.全局变量,在所有函数的外部定义的变量,通常是在程序的头部定义,全局变量是在程序的整个生命周期内都是有效的。可以被任何函数访问,这点很重要,也就是说一旦声明就可以在整个程序中使用。 3.局部变量和全局变量名称可以相同,但是局 阅读全文
posted @ 2019-08-09 17:02 睿晞 阅读(599) 评论(0) 推荐(0) 编辑
摘要: To evaluate the performance of our first year CS majored students, we consider their grades of three courses only: C C Programming Language, M Mathema 阅读全文
posted @ 2019-08-09 15:45 睿晞 阅读(284) 评论(0) 推荐(0) 编辑
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 29 下一页