flag = Trued = {}with open('b.txt', mode='rt', encoding='utf-8') as f: res = f.readlines() for line in res: i = line.strip('\n').split(':') d[i[0]] = ...
分类:
其他好文 时间:
2021-06-15 17:54:21
阅读次数:
0
d = {}with open('b.txt', mode='rt', encoding='utf-8') as f: res = f.readlines() for line in res: i = line.strip('\n').split(':') d[i[0]] = i[1]while T ...
分类:
其他好文 时间:
2021-06-15 17:52:42
阅读次数:
0
原生微信小程序 小程序三剑客(wxml,wxss,js) wxml 功能类似html,描述节点,但小程序的用的标签是 view, button, text 等等。官网组件 wxss 功能类似css,页面样式,不能嵌套选择器,建议使用rpx。 px就是Pixel的缩写,就是指像素 rpx单位是微信小程 ...
分类:
微信 时间:
2021-06-15 17:35:30
阅读次数:
0
第一、二章 HTML、CSS、JavaScript自行复习 第三章 浏览器 / 服务器 一、Java Web工作原理 —>用户在客户端(浏览器)发送请求 —>Web服务器请求URL所标识的路径 —>Web服务器加上消息头发送给客户端的浏览器 —>客户端解析响应的HTML数据渲染到页面 1.2Serv ...
分类:
Web程序 时间:
2021-06-13 10:57:07
阅读次数:
0
CSS3 - Flex布局 可悲的是我学了那么久既然不懂这玩意,听说这玩意很强: 直接上图片: ...
分类:
Web程序 时间:
2021-06-13 10:40:16
阅读次数:
0
不难发现,如果想要从 \((x_i,y_i)\) 走到 \((x_{i+1},y_{i+1})\),所需要的时间最少是 \(|x_{i+1}-x_i|+|y_{i+1}-y_i|\)。 同时,走的时间是 \(t_{i+1}-t_i\)。 那么初步判断,当距离大于时间,也就是说走最短路也没法按时走到, ...
分类:
其他好文 时间:
2021-06-13 10:17:19
阅读次数:
0
'''CSS style link rel="stylesheet" href="css" style 基本选择器 #id .class TogName * 组合选择器 x y/x > y/x + y/x ~y 属性选择器 x[a/a=b/a^=b/a$=b/a*=b/a~=b] 伪类选择器 :li ...
分类:
Web程序 时间:
2021-06-13 09:59:56
阅读次数:
0
下面这篇博客,很详细,基于源码: https://my.oschina.net/u/4933191/blog/4896611 下面这篇博客基于案例,生动: https://www.cnblogs.com/code-duck/p/13433809.html ...
分类:
移动开发 时间:
2021-06-13 09:57:29
阅读次数:
0
nginx.conf配置 #user nobody; user www www; worker_processes 8; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log in ...
分类:
其他好文 时间:
2021-06-13 09:55:40
阅读次数:
0
安装web插件,处理html, javascript, css等: Help菜单 --> Eclipse Marketplace --> 选择Popular页 选择安装Eclipse Enterprise Java and Web Developer Tools 安装springboot插件,在ID ...
分类:
编程语言 时间:
2021-06-13 09:45:16
阅读次数:
0