Python
使用Python的`turtle`库可以很容易地绘制正方形:
```python
import turtle
def draw_square(length):
turtle.speed(1) 设置绘制速度
for _ in range(4):
turtle.forward(length) 向前移动指定长度
turtle.right(90) 向右旋转90度
side_length = 100
turtle.penup()
turtle.goto(-side_length / 2, -side_length / 2)
draw_square(side_length)
turtle.done()
```
JavaScript
在网页上使用JavaScript和HTML可以绘制正方形:
```html