# 1.可迭代对象# 能被for循环遍历取值的数据类型:list/str/tuple/dict/set# 遍历(迭代):可迭代对象使用for.. in..的循环语法从其中依次拿到数据使用的过程 # for i in 可迭代对象:# li = [1, 2, 3]# for i in li: # 遍历取 ...
分类:
其他好文 时间:
2021-03-16 12:00:59
阅读次数:
0
在配置好git环境后(即可以执行git命令): https://git-scm.com/downloads git init 初始化成git项目 git remote add origin https://github.com/18476305640/GitUp1.git 在项目加加入远程仓库信息, ...
分类:
其他好文 时间:
2021-03-16 11:44:47
阅读次数:
0
一个在90末尾,00开头中间的00后一枚,对这种比较喜欢感兴趣,啥也不会,就是随便自己学学,大佬勿喷,大神求带! 1 <style> 2 div { 3 margin: 400px auto; 4 font-size: 40px; 5 text-align: center; 6 } 7 p { 8 ...
分类:
其他好文 时间:
2021-03-15 11:24:09
阅读次数:
0
引言: flask中的多实例其实和django的多app很像,不过django的多app通过二级路由分发,flask的多app是通过 DispatcherMiddleware 来实现 代码: from flask import Flask from werkzeug.wsgi import Disp ...
分类:
移动开发 时间:
2021-03-15 10:48:38
阅读次数:
0
<!DOCTYPE html> <html lang="zh"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv ...
分类:
Web程序 时间:
2021-03-12 13:45:30
阅读次数:
0
C++ SDL2配置 参考视频教程https://www.bilibili.com/video/BV1gs411X7zz?p=1 下载SDL2地址:http://www.libsdl.org/download-2.0.php中下载开发库,我这里下载的是vc版的。 新建一个控制台的项目。将加压后的in ...
分类:
编程语言 时间:
2021-03-11 18:19:55
阅读次数:
0
如果在同一个文件夹内,只需要用.***.py 不需要绝对路径 如果想调用父文件夹里的子文件的某个函数,只需要把这个函数加在父文件夹下面的__init__.py里 init.py 文件格式: from .backends import endSet from .affe_net import Net ...
分类:
编程语言 时间:
2021-03-11 11:43:04
阅读次数:
0
本文首发于“合天网安实验室” 作者: S1mple 你是否正在收集各类网安网安知识学习,合天网安实验室为你总结了1300+网安技能任你学,点击获取免费靶场>> forward laravel的版本已经到了8;这里分析一个laravel8的反序列化漏洞,但是让我感到意外的是,这个漏洞竟然在低版本的la ...
分类:
其他好文 时间:
2021-03-10 13:39:55
阅读次数:
0
Reverse Linked List II 反转链表 Given the head of a singly linked list and two integers left and right where left <= right, reverse the nodes of the list ...
分类:
编程语言 时间:
2021-03-10 13:27:14
阅读次数:
0
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System. ...
分类:
其他好文 时间:
2021-03-10 13:11:51
阅读次数:
0