摘要:
HTTPRequest与HTTPresponse 一、 1、互联网两台机器之间通行:ip、端口、协议 - 协议 - HTTP (80) - HTTPS (443) 2、浏览器输入URL一回车返回页面发生了什么? - 域名 -> DNS解析 -->ip地址 -> 找到服务端 ->服务端返回消息 -> 浏览器 - 浏览器 服务器 ... 阅读全文
摘要:
用户认知———auth模块 目录: auth模块 User对象 实例 扩展默认的auth_user表 - 创建超级用户 - python3 manager.py createsuperuser - 认证 校验 用户的用户名与密码 obj = auth.authenticate(request, us 阅读全文
摘要:
# 最长上升子序列 class Solution: """ @param nums: An integer array @return: The length of LIS (longest increasing sequence) """ def longest_increasing_sequence(self, nums): # wr... 阅读全文