python ondraw
时间: 2023-11-22 14:50:26 浏览: 76
spring 异步编程样例
很抱歉,Python中没有ondraw方法。ondraw是Android中的一个方法,用于绘制视图。在Python中,可以使用一些库来进行绘图,例如matplotlib和turtle等。下面是一个使用matplotlib库绘制简单图形的例子:
```python
import matplotlib.pyplot as plt
# 绘制折线图
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
plt.plot(x, y)
plt.show()
# 绘制散点图
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
plt.scatter(x, y)
plt.show()
```
阅读全文