关于python:随机选择1-1680范围内的数字

Randomly Picking a number within a Range of 1-1680

本问题已经有最佳答案,请猛点这里访问。

我想用这个脚本来创建鼠标也可以移动的跳线,但我希望x跳线移动到0-1670范围内的位置。

1
2
3
4
5
6
7
8
9
import win32api
import win32con


def move(x,y):
    win32api.SetCursorPos((x,y))


move(1670,955)

任何帮助都会很好!


ZZU1


根据https://docs.python.org/2/library/random.html

它是EDOCX1,所以

ZZU1

谷歌和文档是你的朋友,学会使用它们。