JackyCJ Blog

Thinking will not overcome fear but action will.

Python

数组/列表去重

Python数组/列表去重 a = [1, 2, 3, 1, 2, 3] b = [] for e in a: if e not in a: b.append(e)

PyQt5

安装与使用

PyQt5安装与使用 安装 pip install PyQt5, PyQt5-stubs 浏览器 PyQt14以后版本不再自带WebView,需要单独安装。 pip install PyQtWebEngine 布局 控件 树形控件 QTreeWidget 创建节点 item = QTreeWidgetItem() 设置宽度 QTreeW...

ECharts

安装与使用

ECharts使用 访问官网

Xcode应用开发

Xcode应用开发 历史版本下载

ComicDownloader

漫画批量下载工具

ComicDownloader(漫画批量下载) 自制漫画批量下载工具 点击下载 使用步骤: 搜索关键字。 选中搜索结果。 选择下载章节,下载。 等待下载完成。 支持 manhuadb.com h...

Chrome扩展

支持Windows/Mac

Chrome扩展开发

Json

使用

Json使用 json.dumps import json data = { 'name' : 'myname', 'age' : 100, } json_str = json.dumps(data) json.dump with open('test.json', 'w') as f: json.dump(data, f) with open('test...

Python生成可执行程序

支持Windows/Mac

Python生成可执行程序 Windows系统 安装pyinstaller pip install pyinstaller 打包 pyinstaller -F -w xxx.py 给程序换图标的方法 输入命令中添加一个 -i tubiao.ico(图标的相对路径) p...

import其他目录下文件

import其他目录下文件 import sys sys.path.append("../t/") import xxx xxx.fun() 字符串形式动态调用 a = __import__('os') importlib.import_module动态导入模块 import importlib module = importlib.import_module('path...

Tkinter

使用

Tkinter使用 Entry Treeview Scrollbar Listbox Listbox为列表框控件,它可以包含一个或多个文本项(text item),可以设置为单选或多选。使用方式为Listbox(root,option…)。 常用的参数列表如下: 参数 描述 master ...