9.查询“001”课程比“002”课程成绩高的所有学生的学号; select a.s_id from (select s_id,score from SC where C_ID='001') a,(select s_id,scorefrom SC where C_ID='002') b where ...
分类:
数据库 时间:
2021-01-07 11:46:24
阅读次数:
0
1.itertools Python的内建模块itertools提供了非常有用的用于操作迭代对象的函数。 首先,我们看看itertools提供的几个“无限”迭代器: >>> import itertools >>> natuals = itertools.count(1) >>> for n in ...
分类:
编程语言 时间:
2021-01-06 12:07:57
阅读次数:
0
参考资料: https://docs.microsoft.com/en-us/windows/security/threat-protection/security-policy-settings/account-lockout-threshold 当你找到这个博客的时候,说明你遇到了和我一样的尴尬 ...
分类:
其他好文 时间:
2021-01-05 10:56:25
阅读次数:
0
title: python迭代器与生成器 data: 2018-4-7 categories: python tags: python 迭代器 迭代器(Iterator)是访问集合元素的一种方式。迭代器对象从集合的第一个元素开始访问,直到所有的元素被访问完结束。迭代器只能往前不会后退。 迭代器有两个 ...
分类:
编程语言 时间:
2021-01-04 10:40:25
阅读次数:
0
#include<stdio.h> int max(int a, int b)//形参 { return a > b ? a : b; } int main() { int x, y; scanf("%d%d", &x, &y); printf("%d", max(x, y));//实际参数 ret ...
分类:
其他好文 时间:
2021-01-04 10:39:27
阅读次数:
0
uniapp 调用手机相机拍照实现图片上传 参考资料:https://blog.csdn.net/weixin_46391646/article/details/108450898 调用相机相册 uni.chooseImage({ count: 1, sizeType: ['original', ' ...
分类:
移动开发 时间:
2021-01-01 12:40:13
阅读次数:
0
docker启动elasticsearch闪退dockerlogselasticsearch......ERROR:[1]bootstrapchecksfailed[1]:maxvirtualmemoryareasvm.max_map_count[65530]istoolow,increasetoatleast[262144]ERROR:Elasticsearchdidnotexitnormall
分类:
其他好文 时间:
2021-01-01 12:33:36
阅读次数:
0
本文由亓斌投稿。亓斌的博客地址:http://blog.csdn.net/qibin0506一直以来灵活的LayoutManager也作为RecyclerView的一大特色被介绍,不过自定义LayoutManager的文章倒是不多,一起来看看作者是如何自定义的。1RecyclerView的时代自从google推出了RecyclerView这个控件,铺天盖地的一顿叫好,开发者们也都逐渐从ListVi
分类:
其他好文 时间:
2021-01-01 12:28:29
阅读次数:
0
改完文件名称后,Dr.he 发现分别保存5个状态的jpg 文件的文件夹出现缺少文件的情况。为了让他少熬夜查找缺失文件,结合网友分享的脚本,写了查找以下代码,满足他的需求,也以防自己忘记。以下代码能解决实际需求,适合初学者。不足之处,欢迎指出修正! 1 import os 2 import datet ...
分类:
编程语言 时间:
2020-12-31 12:27:12
阅读次数:
0
雕爷学编程,Arduino动手做,开源硬件,创客传感器,HX711 人体称重模块 ...
分类:
其他好文 时间:
2020-12-31 12:23:39
阅读次数:
0