上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 69 下一页
摘要: 1、rd命令 rd /s /Q c:\temp 会将temp文件夹也删除 2、rd命令+md命令 rd /s /Q c:\temp md c:\Temp 删除后再重建 3、del命令 del /s /Q c:\temp 只能删除文件,而不能删除子文件夹 4、del命令+rd命令,先刪除文件,再进入t 阅读全文
posted @ 2021-11-17 18:02 晨光曦微 阅读(1946) 评论(0) 推荐(0) 编辑
摘要: 选区——shift+f5(填充)(选择内容识别)——确定 阅读全文
posted @ 2021-11-17 15:49 晨光曦微 阅读(870) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-11-14 10:58 晨光曦微 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 正确打开方式应该加上encoding='utf-8-sig' 代码 import csv data = [['American','美国人'], ['Chinese','中国人']] with open('results.csv','w',newline='',encoding='utf-8-sig 阅读全文
posted @ 2021-11-07 15:12 晨光曦微 阅读(259) 评论(0) 推荐(0) 编辑
摘要: 一.安装使用virtualenvwrapper (virtualenvwrapper是virtualenv的进阶版,可更方便使用虚拟环境,要在virtualenv安装完成后再安装) pip install virtualenv pip install -i https://pypi.doubanio 阅读全文
posted @ 2021-11-07 11:10 晨光曦微 阅读(223) 评论(0) 推荐(0) 编辑
摘要: pip install beautifulsoup4 bs4解析网页时报错:bs4.FeatureNotFound: Couldn't find a tree builder with the features you requested: html_parser. Do you need to i 阅读全文
posted @ 2021-10-31 16:13 晨光曦微 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 首先打开cmd: 输入 pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple 直接一步到位,不用费劲巴拉的创文件之类的。 然后贴几个国内源: 阿里云 http://mirrors.aliyun.com/pyp 阅读全文
posted @ 2021-10-31 15:52 晨光曦微 阅读(1076) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/linchenguang/p/14872067.html def crawler(): # 设置cookie cookie = '''cisession=19dfd70a27ec0e t_f805f7762a9a237a0deac37015e9f6d9 阅读全文
posted @ 2021-10-31 14:49 晨光曦微 阅读(180) 评论(0) 推荐(0) 编辑
摘要: <!-- 1. 使用v-model(双向数据绑定)自动收集数据 text/textarea checkbox radio select --> <div id="demo"> <form action="/xxx" @submit.prevent="handleSubmit"> <span>用户名: 阅读全文
posted @ 2021-03-11 09:44 晨光曦微 阅读(226) 评论(0) 推荐(0) 编辑
摘要: { "keys": ["ctrl+shift+/"], "command": "reindent" } 阅读全文
posted @ 2021-02-13 09:46 晨光曦微 阅读(96) 评论(0) 推荐(0) 编辑
上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 69 下一页