上一页 1 2 3 4 5 6 ··· 8 下一页
摘要: linux的cat命令 cat file1 file2 file3 > file 将file1,file2,file3,重定向到file文件 windowns系统没有cat,可以下载git的客户端 https://git-scm.com/downloads 阅读全文
posted @ 2021-12-19 11:37 xuecl 阅读(698) 评论(0) 推荐(0) 编辑
摘要: from selenium import webdriver from selenium.webdriver.common.keys import Keys # 拿到键盘的按键 # 通过 webdriver 拿到 Chrome 对象 web = webdriver.Chrome(executepat 阅读全文
posted @ 2021-12-05 14:16 xuecl 阅读(446) 评论(0) 推荐(0) 编辑
摘要: import time import requests # 返回视频的真实下载地址 def get_real_video_url(video_id): # 视频地址解析接口 url = 'https://www.pearvideo.com/videoStatus.jsp?contId={}'.for 阅读全文
posted @ 2021-12-04 11:38 xuecl 阅读(65) 评论(0) 推荐(0) 编辑
摘要: import time import random from selenium import webdriver def crawl(): # 网易云音乐 只要平凡 url = 'https://music.163.com/#/song?id=574919767' # 拿到chrome参数配置对象 阅读全文
posted @ 2021-11-30 23:19 xuecl 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 智能合约概述 以太坊solidity学习记录 深入理解Solidity——全局变量 阅读全文
posted @ 2020-12-03 16:52 xuecl 阅读(43) 评论(0) 推荐(0) 编辑
摘要: win + r ,然后输入 cmd 输入命令:netsh wlan show profiles name="你的wifi的名字" key = clear 安全设置中的关键内容就是wifi密码了 阅读全文
posted @ 2020-08-27 09:54 xuecl 阅读(223) 评论(0) 推荐(0) 编辑
摘要: 指针函数:一个函数的返回值为指针,则该函数叫做指针函数。 int *fun(int a,int b){ } 函数指针:指向一个函数的指针变量,用来存放函数的入口地址。 int (*fun)(int,int); 阅读全文
posted @ 2020-06-10 18:35 xuecl 阅读(286) 评论(0) 推荐(0) 编辑
摘要: 指针数组:存放指针的数组,本质上来说,它是一个数组 int *a [3]; 数组指针:指向数组的指针,本质上来说,它是一个指针 int (*a)[3];//指向一个int a[][3]数组的指针 阅读全文
posted @ 2020-06-10 18:05 xuecl 阅读(278) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/royenhome/archive/2010/05/22/1741592.html 阅读全文
posted @ 2020-06-07 12:18 xuecl 阅读(116) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/pylearner/p/10903266.html 阅读全文
posted @ 2020-06-05 23:58 xuecl 阅读(345) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 8 下一页