--高级查询在数据库中用得是最频繁的,也是应用最广泛的。 Ø 基本常用查询 --select select * from student; --all 查询所有 select all sex from student; --distinct 过滤重复 select distinct sex from student; --count 统计 select count(*) from student; select count(sex) from student; select count(dis
最近看到一个有意思的试题,正好在需求中也碰到类似的问题,即计算某个月的天数问题。碰到类似问题也许大部分会想是不是还要判断闰年、平年,如果这样想的话就复杂了,下面给出具体的计算方法。
获取月份天数方法一:
//传入年份和月份 获取该年对应月份的天数
function getMonthDays(year,month){
var thisDate = new Date(year,month,0); //当天数为0 js自动处理为上一月的最后一天
return thisDate.getDate
先上效果图:
下面是代码实现:
import calendar
try:
yy=int(input('请输入年份:'))
mm=int(input('请输入月份:'))
L=['零','一','二','三','四','五','六','天']
if mm0:
# 得到返回的元组,第一个元素是所查月份的第一天对应的是星期几(0-6),并转换为字符串去遍历
for i in str(calendar.monthrange(yy+1,m