摘要:
from urllib import request, parse import json, re url = "https://fanyi.baidu.com/sug" # 对post请求携带的参数进行处理 # 1.将请求参数封装到字典中 while 1: word = input("输入中文:") data = { "kw": word } ... 阅读全文
摘要:
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title> <style> /*后代选择器 在CSS中使用比较频繁*/ div p { color:red; } div div p { color 阅读全文
摘要:
单表查询 语法 select 字段1,字段2...from 表名 where 条件 group by field having 筛选 order by field limit 限制条件 关键字执行优先级 from, where, group by, having, select, distinct, 阅读全文