使用Python的turtle模块
```python
import turtle
创建一个画布
canvas = turtle.Screen()
创建一个海龟对象
t = turtle.Turtle()
设置画笔颜色和粗细
t.pencolor('red')
t.pensize(2)
移动海龟并绘制一条直线
t.forward(100)
关闭画布
canvas.exitonclick()
```
使用Python的matplotlib库
```python
import matplotlib.pyplot as plt
import numpy as np
生成100个点
x = np.linspace(0, 10, 100)
y = np.sin(x)
绘制一条线
plt.plot(x, y)
plt.show()
```
使用C++的easyX图形库
```cpp
include
int main() {
initgraph(640, 480); // 创建绘图窗口,大小为 640x480 像素
line(30, 30, 100, 100); // 画一条线
getch(); // 按任意键继续
closegraph(); // 关闭绘图窗口
return 0;
}
```
使用HTML和CSS
```html