python随机生成五个坐标
时间: 2023-09-15 08:15:27 浏览: 130
随机产生球体上的坐标
可以通过以下代码来生成五个随机坐标:
```python
import random
# 生成五个坐标
for i in range(5):
x = random.randint(0, 100)
y = random.randint(0, 100)
print("({0}, {1})".format(x, y))
```
输出结果类似于:
```
(59, 89)
(62, 17)
(9, 83)
(34, 69)
(26, 67)
```
阅读全文