
python
zolty
Earth coder & Lionheart
展开
-
python利用Monte Carlo方法计算圆周率
from random import randomdef cal(n): count = 0 for i in range(1, n): x = random() y = random() if x*x + y*y <= 1: count += 1 print("pi:", 4*count/n)if __name__ == '__main__': cal(10000000)参考文.原创 2022-02-06 14:18:55 · 830 阅读 · 0 评论 -
python proj utm2wgs wgs2utm
1.wgs2utmzone 需要选择2.utm2wgs# zolty add v into vtd by udpfrom pyproj import Proj, Transformer# lon,lat = (119.9579946997, 30.5206528196)def wgs2tm(lon, lat): pipeline_str = ( '+proj=utm +zone=50 +datum=WGS84 +units=m +no_defs' '原创 2022-01-20 23:13:00 · 1196 阅读 · 0 评论 -
python 利用dict list构建json数组
1.import jsondict_list = []for i in range(1, 5): dict_obj = {"id": i, "name": i * i} dict_list.append(dict_obj)print(dict_list)dict_json = json.dumps(dict_list)print(dict_json) headers = {'Content-Type': 'application/json'} to_url原创 2021-12-13 00:41:13 · 1817 阅读 · 0 评论 -
SUMO1.9.2 TraCI python 简单使用
1.exa.sumocfg<configuration> <input> <net-file value="bilibili.net.xml"/> <route-files value="routes.rou.xml"/> </input> <!-- sim.py's configuration --> <time> <begin val原创 2021-08-11 14:58:42 · 932 阅读 · 0 评论 -
vue 学习小结(4)关于‘Splan‘ 终章
背景利用vue 以及 py服务端,实现共享计划本(Splan),利用vue的mui,进行简单美化。vue 学习小结(1)关于v-forvue 学习小结(2)关于‘Splan‘vue 学习小结(3)关于‘Splan‘1.v-if利用v-if,实现jQuery的remove操作。3.v-model & @click3.加载动画思路:当post请求时,显示加载动态;请求完毕后,加载动画消失。loading.css.chromeframe { margin: 0.2em 0;原创 2021-03-29 17:30:24 · 220 阅读 · 0 评论 -
vue 学习小结(1)关于v-for
1.新建项目选择如下配置2.修改index.html参考教程:chapter09 List Rendering<!DOCTYPE html><html><head><meta charset="utf-8"><title></title><script src="js/vue.js" type="text/javascript" charset="utf-8"></script></h原创 2021-03-27 20:00:23 · 128 阅读 · 0 评论 -
python selenium实现简单网页测试流程-健康打卡v2.0
# clock_in介绍吉林大学自动健康打卡v2.0软件架构selenium - chromedriver 【调用chrmoe】 win32gui【酷Q被屏蔽,故改用该方案】开发思路用selenium完成测试,获取网页中“已完成项目”数据,通过win32gui打开对应QQ聊天窗口,在服务器上创建计划最佳安装教程将chrmoe驱动存放至 chrome根目录下Application文件夹 【C:\Program Files (x86)\Google\Chrome\Applicati原创 2020-08-08 17:17:25 · 1200 阅读 · 0 评论 -
AUI H5前端简单教程
1.参考文档AUI框架:http://aui.dianm.cc/AUI展示站点:http://aui.ea55.com/2.下载源码(VS Code + Live Server)安装VS Code插件,open with Live Server当手机与PC处于LAN时,手机浏览器键入PC的IP,即可访问到PC上的H5网页,并且能够实时更新,JS的修改可能需要刷新。效果图:3.修改index.html参考AUI架构选择需要的首页,思考是否需要footer...原创 2020-10-15 16:15:01 · 2191 阅读 · 0 评论 -
python 利用SMTP服务发送邮件
1.demo# coding:utf-8import smtplibfrom email.mime.text import MIMETextfrom email.header import Headerclass Mail: def __init__(self): # 第三方 SMTP 服务 self.mail_host = "smtp.qq.com" # 设置服务器:这个是qq邮箱服务器,直接复制就可以 self.mail_pa原创 2020-10-15 14:46:38 · 787 阅读 · 0 评论 -
python 数据进制转换以及位数补全
1.整形的十六进制转换hex(255)2.整形的十六进制转换,去除0xhex(255).replace('0x', '')3.个位数打印两位左侧补0'1'.zfill(2)4.demoif __name__ == '__main__': print(hex(255)) print(hex(255).replace('0x', '')) print('1'.zfill(2)) print('11'.zfill(2))5.展示...原创 2020-09-09 14:09:37 · 6965 阅读 · 0 评论 -
python selenium实现简单网页测试流程-健康打卡v3.0
# clock_in介绍吉林大学自动研究生每日打卡软件架构Python 3.8.2【个人使用,且安装不赘述】 selenium - chromedriver 【调用chrmoe】 win32gui【调用qq】 apscheduler【定时任务】开发思路用selenium完成测试,获取网页中“已完成项目”数据,通过win32gui发送给接收用户QQ,利用apscheduler实现定时任务安装教程将chrmoe驱动存放至 chrome根目录下Application文件夹 ...原创 2020-09-02 22:13:53 · 722 阅读 · 0 评论 -
python 获取文件夹下文件名称
1.demoimport os# 获取文件夹下所有文件,存入数组def listdir(path, list_name): # 传入存储的list for file in os.listdir(path): file_path = os.path.join(file) if os.path.isdir(file_path): listdir(file_path, list_name) else:原创 2020-09-01 22:13:16 · 351 阅读 · 0 评论 -
python 获取当前时间以及效果展示
1.导入库import datetime2.获取时间import datetimenow_time = datetime.datetime.now()print(now_time)now_time = datetime.datetime.now().replace(microsecond=0)print(now_time)3.效果2020-09-01 21:32:04.4373102020-09-01 21:32:04原创 2020-09-01 21:34:03 · 467 阅读 · 0 评论 -
python 定时每日任务
1.day_of_week = '0-6' # mon-sun2.同时结合<自动打卡>,可将定时计划替换为该python脚本实现3.详细介绍可以参考 <枫飞飞>from apscheduler.schedulers.blocking import BlockingSchedulerdef job(): print("hello")if __name__ == '__main__': # BlockingScheduler schedu原创 2020-08-10 14:40:24 · 2058 阅读 · 0 评论 -
python numpy 二维字符串数组
1.demoimport numpy as npm = np.array([np.arange(5), np.arange(5)], dtype=str) # 创建一个二维数组m[0][1] = "love"print(m)print(m[0][1])2.result原创 2020-07-25 10:42:11 · 15646 阅读 · 0 评论 -
python cursor.execute sql data 百分号加载问题
问题:如果直接插入一条某字段为% ,会报错。用%%代替# -*- coding: utf-8 -*-import pymysql.cursorsconnect = pymysql.Connect( host='**********', port=3306, user='root', passwd='123456', db='ry', ...原创 2020-04-23 21:39:09 · 3589 阅读 · 0 评论 -
python 字符串截取
截取前三位tasks[0:3]原创 2020-04-23 20:59:33 · 274 阅读 · 0 评论 -
python 多进程简单实现
1.一个主进程 其余均为子进程2.demo其余进程均为循环执行状态,故直接终止from multiprocessing import Process# ---------------- 主函数 ---------------if __name__ == '__main__': t1 = Process(target=vtd_start) t2 = Proces...原创 2020-04-22 22:15:41 · 337 阅读 · 0 评论 -
Runtime.getRuntime.exec JavaWeb Ubuntu执行高占用python脚本
1.需要执行脚本,该脚本高占用,在JavaWeb中出现阻塞情况python test.py2.调用系统终端gnome-terminal注意:这里 gnome-terminal -x bash -c "python test.py" 是可以在cmd中直接调用的。但是用Runtime.getRuntime().exec()的方法,无法读取后面参数(是我不会读)3.解决方案:...原创 2020-04-22 21:15:09 · 383 阅读 · 0 评论 -
python selenium实现简单网页测试流程-健康打卡v1.0
# clock_in介绍吉林大学自动健康打卡软件架构selenium - chromedriver 酷Q Air - CQHTTP安装教程将chrmoe驱动存放至 chrome根目录下Application文件夹 【C:\Program Files (x86)\Google\Chrome\Application】 新增系统变量 【path C:\Program Files...原创 2020-04-12 15:18:46 · 1373 阅读 · 0 评论 -
python 调用Linux命令
1.demo# -*- coding: utf-8 -*-import osdef VTD(): os.system('cd /home/hil/VTD.2.2/bin/ && ./vtdStart.sh')原创 2020-04-10 20:31:36 · 183 阅读 · 0 评论 -
python argv参数
1.注意argv[0]:脚本名argv[1]:第一个参数2.demo#!/usr/bin/python# -*- coding: UTF-8 -*-import sysa = '/home/hil/py/'+sys.argv[1]print(a)with open(a) as file: content_list = file.readlines() # 读取...原创 2020-04-10 20:22:26 · 318 阅读 · 0 评论 -
python 按行读取文件
1.demowith open('/home/hil/py/log.py', encoding='utf-8') as file: content_list = file.readlines() # 读取所有行并返回列表 contentall = [x.strip() for x in content_list] print(content_list[0]) ...原创 2020-04-10 20:20:06 · 965 阅读 · 0 评论 -
python 配置pymysql以及连接示范
1.import pymysql(pycharm中 右键安装)2.demo# -*- coding: utf-8 -*-import pymysqlconnect = pymysql.Connect( host='localhost', port=3306, user='root', passwd='123456', db='aa',#数据库库...原创 2020-04-10 20:17:30 · 1052 阅读 · 0 评论 -
python pycharm配置环境
1.打开settings2.添加python.exe(python默认路径 C:\Program Files (x86)\Python38-32)原创 2020-04-10 20:07:58 · 185 阅读 · 0 评论