摘要:
linux的cat命令 cat file1 file2 file3 > file 将file1,file2,file3,重定向到file文件 windowns系统没有cat,可以下载git的客户端 https://git-scm.com/downloads 阅读全文
摘要:
from selenium import webdriver from selenium.webdriver.common.keys import Keys # 拿到键盘的按键 # 通过 webdriver 拿到 Chrome 对象 web = webdriver.Chrome(executepat 阅读全文
摘要:
import time import requests # 返回视频的真实下载地址 def get_real_video_url(video_id): # 视频地址解析接口 url = 'https://www.pearvideo.com/videoStatus.jsp?contId={}'.for 阅读全文
摘要:
import time import random from selenium import webdriver def crawl(): # 网易云音乐 只要平凡 url = 'https://music.163.com/#/song?id=574919767' # 拿到chrome参数配置对象 阅读全文
摘要:
智能合约概述 以太坊solidity学习记录 深入理解Solidity——全局变量 阅读全文
摘要:
win + r ,然后输入 cmd 输入命令:netsh wlan show profiles name="你的wifi的名字" key = clear 安全设置中的关键内容就是wifi密码了 阅读全文
摘要:
指针函数:一个函数的返回值为指针,则该函数叫做指针函数。 int *fun(int a,int b){ } 函数指针:指向一个函数的指针变量,用来存放函数的入口地址。 int (*fun)(int,int); 阅读全文
摘要:
指针数组:存放指针的数组,本质上来说,它是一个数组 int *a [3]; 数组指针:指向数组的指针,本质上来说,它是一个指针 int (*a)[3];//指向一个int a[][3]数组的指针 阅读全文
摘要:
https://www.cnblogs.com/royenhome/archive/2010/05/22/1741592.html 阅读全文
摘要:
https://www.cnblogs.com/pylearner/p/10903266.html 阅读全文