上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页
摘要: 工具使用演示: QGIS (* ̄︶ ̄)也能转!!!(直接一手无用功)。想体验的朋友,可以留言哈! 阅读全文
posted @ 2023-11-06 11:22 莲(LIT) 阅读(398) 评论(0) 推荐(0)
摘要: 一、简介 AB是Apache的超文本传输​​协议(HTTP)的性能测试工具。其设计意图是描绘当前所安装的的Apache的执行性能,主要是显示你安装的Apache的每秒可以处理多少个请求。 二、应用场景 主要用于网站性能压力测试,也可以对apache服务器进行网站访问压力测试,也可以对或其它类型的服务 阅读全文
posted @ 2023-10-13 17:11 莲(LIT) 阅读(218) 评论(0) 推荐(0)
摘要: Pycharm环境配置 1、安装Python环境 访问此地址进行下载 https://mirrors.huaweicloud.com/python/ 2、Pycharm配置 3、配置环境变量 如果安装Python未勾选 Add Python xx.xx to Path,将python.exe所在目录 阅读全文
posted @ 2023-09-24 22:11 莲(LIT) 阅读(409) 评论(0) 推荐(0)
摘要: 二维数组示例: er_array = [['霹雳火', '急先锋', '超音速']] for inner_array in er_array: # 嵌套二维数组,使用两个嵌套的for循环遍历数组并获取值 for value in inner_array: print(value) 方法一: 使用en 阅读全文
posted @ 2023-09-01 13:38 莲(LIT) 阅读(361) 评论(0) 推荐(0)
摘要: 简单示例: test_data = [ {"name": "路飞", "age": 18, "from": "Donghai sea"}, {"name": "索隆", "age": 18, "from": "Xihai sea"} ] for hz in test_data: # 遍历 test_ 阅读全文
posted @ 2023-08-14 15:57 莲(LIT) 阅读(790) 评论(0) 推荐(0)
摘要: 点击此处下载 LIT,下载成功后,双击运行即可 阅读全文
posted @ 2023-08-08 09:47 莲(LIT) 阅读(63) 评论(0) 推荐(0)
摘要: 3、 # -*- coding:UTF-8 -*- import os from time import sleep import hashlib import glob DOWNLOAD_PATH = 'D:\\download_file' # 获取文件MD5值 def get_file_md5( 阅读全文
posted @ 2023-06-27 16:20 莲(LIT) 阅读(142) 评论(0) 推荐(0)
摘要: 一、测试目录&测试文件 二、代码实现 1、 # -*- coding:UTF-8 -*- import os from time import sleep DOWNLOAD_PATH = 'D:\\download_file' # 检查下载文件 def check_download_file(f): 阅读全文
posted @ 2023-06-20 09:38 莲(LIT) 阅读(181) 评论(0) 推荐(0)
摘要: 一、介绍 requirements.txt 是定义项目依赖的python包,可通过工具生成。 工具可以生成两种依赖包定义,一是项目依赖的python包,二是所在python环境安装的python包。 二、生成 requirements.txt 文件 1、生成项目依赖包 ♥♥♥♥♥♥ 安装 pipre 阅读全文
posted @ 2023-06-09 15:44 莲(LIT) 阅读(3301) 评论(0) 推荐(0)
摘要: Python-PyQt5的安装与简单使用 一、安装 1、安装 PyQt5 和 PyQt5-tools pip install PyQt5 -i https://pypi.douban.com/simple pip install PyQt5-tools -i https://pypi.douban.com/simple 安装结果查看 2、配 阅读全文
posted @ 2023-06-07 10:58 莲(LIT) 阅读(1268) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页