[ABC365C] Transportation Expenses
题面翻译
【题目描述】
有 N N N个人参加某项活动,第 i i i人的交通费用为 A i A_i Ai日元
活动组织者Takahashi决定为交通补贴设定最高限额 x x x。第 i i i人的补贴将为 m i n ( x , A i ) min(x,A_i) min(x,Ai)日元。…
3.3.9.多表关联
student 表中 外键 team_id 指向 team表中主键 3.3.10.select子查询
3.3.10.1.实例1
select(select count(*) from student where stu_sex 1) as 男学生人数,(select count(*) from student where stu_sex 0) as 女学生人数;3.3.10.2.实例2
select team_i…
一、打开文件的推荐写法
with open(文件, 打开方式, encodingutf-8) as 变量:对文件的操作
优点:使用这种方法书写打开文件的代码,不用写关闭文件的代码,会自动关闭文件,缩进中代码执行完成就会关闭。
with open(test.txt, w, …