# for双循环,内层循环先循环,外层循环再循环for i in range(1,4): for j in range(1,3): print('i=',i,' ','j=',j)执行结果: # for 双层循环关联for i in range(1,4): for j in range(1,i+1) ...
分类:
编程语言 时间:
2021-05-23 23:06:26
阅读次数:
0
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=<device-width>, initial-scale=1.0"> <title>Documen ...
分类:
其他好文 时间:
2021-05-23 23:02:35
阅读次数:
0
1、设置超链接 # 设置超链接 sheet.cell(2,2).hyperlink = "www.baidu.com" 2.cell的其它属性 # cell 的其它属性 sheet.cell(row = 1,column = 2).column_letter sheet.cell(row = 1,c ...
分类:
其他好文 时间:
2021-05-23 22:55:32
阅读次数:
0
什么是BOM头 Unicode的学名是"Universal Multiple-Octet Coded Character Set",简称为UCS。UCS可以看作是"Unicode Character Set"的缩写。在UCS 编码中有一个叫做 "Zero Width No-Break Space", ...
分类:
其他好文 时间:
2021-05-04 16:35:28
阅读次数:
0
先说一嘴:sass和scss的区别: 异同:简言之可以理解scss是sass的一个升级版本,完全兼容sass之前的功能,又有了些新增能力。语法形式上有些许不同,最主要的就是sass是靠缩进表示嵌套关系,scss是花括号 //sass 太费眼了 .father width:100px; .son wi ...
分类:
其他好文 时间:
2021-05-04 16:24:18
阅读次数:
0
1.build.gradle,该文件分为项目级与模块级两种,用于描述App工程的编译规则。 2.项目级别的build.gradle一般无需改动。只需关注模块级别的。 图为模块级别的配置文件 ...
分类:
其他好文 时间:
2021-05-03 12:31:43
阅读次数:
0
antd Table 组件columns列表设置有宽度,但就是不生效 解决方案: 设置scroll的width等于所有列宽之和(scroll={{x: 100%}}) ...
分类:
其他好文 时间:
2021-05-03 11:51:25
阅读次数:
0
在paintEvent事件中绘制窗口边框这里我们需要重写paintEvent方法,具体代码如下: void paintEvent(QPaintEvent *event) { QPainter painter(this); painter.setRenderHint(QPainter::Antiali ...
分类:
其他好文 时间:
2021-04-30 12:29:47
阅读次数:
0
c语言中程序的循环控制 大小值的判断及赋值。 输出长度大于高度的矩形。 1、 #include <stdio.h> int main(void) { int i, j, height, width, min, max; printf("please input the height and widt ...
分类:
编程语言 时间:
2021-04-28 12:21:22
阅读次数:
0
问题描述 下面是有关这个问题的描述部分。 英文 Given a string s, return the first non-repeating character in it and return its index. If it does not exist, return -1. 中文 针对给 ...
分类:
其他好文 时间:
2021-04-28 12:10:00
阅读次数:
0