- 博客(3)
- 收藏
- 关注
原创 python多线程框架
利用python进行多线程的框架,可以运用到并发测试、爬虫、批处理等 import threading # THREAD_NUM自定义全局变量需要执行的线程数 # ONE_WORKER_NUM自定义每个线程循环次数 # 这两个变量乘积就是并发数 THREAD_NUM = 1 ONE_WORKER_NUM = 1 # 自定义需要执行的test() 函数,可以是多个 def test(): #测试代码 # 引用全局变量作为循环执行的次数,嵌套执行指定循环次数的test()函数 def work
2020-09-15 21:37:35 1117
原创 利用turtle库画圆
利用turtle库画圆 # 导入所需模块 import turtle import math # 定义一个用龟库画圆的函数 def drawCircleTurtle(x,y,r): # 移动到起点 turtle.up() turtle.setpos(x+r,y) turtle.down() # 画圆 for i in range(0,365,5): # 先将角度转成弧度 a = math.radians(i)
2020-08-24 11:34:46 2899
原创 python自动获取鼠标位置
使用pyautogui库 import pyautogui print("press ctrl-c to quit") try: while True: x,y = pyautogui.position() positionStr = "X: " + str(x).rjust(4) + " Y: " + str(y).rjust(4) print(positionStr,end='') print('\b' * len(position
2020-08-12 14:40:57 674
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人