摘要:
------------------------------------------------------------------Shell脚本---------------------------------------------------------------------------------------- 1:shell是一个在操作系统上的软件,linux登录后默认就进入这个... 阅读全文
摘要:
一:javascript基础 1.语法 2.数据类型 3.操作符 4.语句 5.函数 6.变量 7.Object 类型 8.基本包装类型 9.Global 对象 10.Math 对象 11.初始化和检查 12.转换与排序 13.栈和队列操作 14.其它操作 二:Node.js基础 1.认识 Node.js 2.Node.js 与 JavaScript 的关系 ... 阅读全文
摘要:
import requests import re import time import hashlib def get_page(url): print('GET %s' %url) try: response=requests.get(url) if response.status_code == 200: retur... 阅读全文