logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

关于Cite Space 点击关键词分析后出现“the timing slicing setting is outside the range of your data.”即时间切片错误

版本:cite space 5.8.R3原因:CNKI导出的数据中不含Reference,在“Node Types”中把这个选项取消就好了

#科技
Python|线程锁

import threading# 线程锁(互斥锁):当一个线程设置锁后,只有等到释放锁后,才能调度其他线程lock=threading.Lock() #创建锁num=100def run(name):global numnum-=1lock.acquire() #设置锁print("线程",name,"执行了,目前num的值为:",num)lock.release() #释放锁for i in

#python
一个下载视频的小程序

原本是想下载知乎上一个视频来做笔记的,但下载后发现无法播放,现实解码异常,可能是知乎上边的视频进行了加密吧写下边这个程序是为了练手的。。# TODO 视频的解码、import osimport reimport requests# 构建请求头header = {"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/

#音视频#小程序#safari
User-Agent 列表

由于应对反爬虫的需要,整理出手机和pc端浏览器的User-Agent以备使用。PC端:safari 5.1 – MACUser-Agent:Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_8; en-us) AppleWebKit/534.50 (KHTML, like Gecko) Version/5.1 Safari/534.50safari 5.

#javascript#开发语言#ecmascript
VScode中使用Python绘图无法显示

win10VScodeA possible solution:1.press "setting"--->2.input "terminal.integrated:inherit env" in the searching box; then check the dialog box3. an example for testingimport numpy as npimport pandas

#vscode#python
到底了