码迷,mamicode.com
首页 >  
搜索关键字:score    ( 2092个结果
50.数据库数据查询例题
截图 表名称以此为course,teacher,class,score,student 代码 calss 表 create table class( cid int primary key auto_increment, caption varchar(20) not null ); insert ...
分类:数据库   时间:2018-06-19 17:48:29    阅读次数:308
[ABC 100] C-*3 or /2
C - *3 or /2 Time limit : 2sec / Memory limit : 1000MB Score: 300 points Problem Statement As AtCoder Beginner Contest 100 is taking place, the office ...
分类:其他好文   时间:2018-06-17 15:16:01    阅读次数:283
[ABC 100] A-Happy Birthday!
A - Happy Birthday! Time limit : 2sec / Memory limit : 1000MB Score: 100 points Problem Statement E869120's and square1001's 16-th birthday is coming ...
分类:移动开发   时间:2018-06-17 15:07:03    阅读次数:237
[ABC 100] B-Ringo's Favorite Numbers
B - Ringo's Favorite Numbers Time limit : 2sec / Memory limit : 1000MB Score: 200 points Problem Statement Today, the memorable AtCoder Beginner Conte ...
分类:其他好文   时间:2018-06-17 15:06:43    阅读次数:212
输入数值,判断得到的成绩。if else
输入数值,判断得到的成绩 if : else score = int(input("score:")) if score > 90: print("A") elif score > 80: print("B") elif score > 70: print("C") elif score > 50: ...
分类:其他好文   时间:2018-06-17 13:30:56    阅读次数:118
今天你教高考生一个装逼神技!利用Python爬取历年高考成绩!
2.爬取数据 1.获取各省的分数线信息 获取各省份的链接: # 获取分数线 def get_score(url): web_data = requests.get(url, headers=header) soup = BeautifulSoup(web_data.content, 'lxml') ...
分类:编程语言   时间:2018-06-13 19:35:38    阅读次数:294
MySQL:如何更新某个字段的值为原来的值加1
格式:update 表名称 set 字段名称 = 字段名称 + 1 [ where语句] 比如说数据库中有一张student表,要想把id为1的学生成绩(score)加1则update student set score=score+1 where id = 1如果你不加where系统就不会知道你具 ...
分类:数据库   时间:2018-06-13 14:54:34    阅读次数:748
hire-assistant
1 #根据给定的应聘者列表,得出最好的应聘者 2 def hire_assistant(assList): 3 n = len(assList) 4 best = 0 5 index = 0 6 for i in range(n): 7 value = assList[i].score 8 if v ...
分类:其他好文   时间:2018-06-11 22:14:58    阅读次数:166
根据对象的某个属性名的值从新排序
var list=[ { name:"aaa", score:80 }, { name:"bbb", score:70 }, { name:"ccc", score:90 }, { name:"ddd", scor... ...
分类:编程语言   时间:2018-06-11 14:49:27    阅读次数:189
[ABC 099] A-ABD
A - ABD Time limit : 2sec / Memory limit : 256MB Score : 100 points Problem Statement Decades have passed since the beginning of AtCoder Beginner Cont ...
分类:其他好文   时间:2018-06-11 00:44:06    阅读次数:183
2092条   上一页 1 ... 64 65 66 67 68 ... 210 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!