Skip to content

Commit

Permalink
Update python常用库.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Emisaber authored Oct 23, 2024
1 parent f1cd290 commit 9fff3b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions blogs/通识课/python常用库.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ tag:
- python
categories:
- Blog
date: 2024/10/20
date: 2024/10/23
---

# python常用库
Expand Down Expand Up @@ -223,4 +223,4 @@ plt.show()
4. 使用一个循环生成10000个随机点,每个点的x和y坐标都在-1到1之间。如果点的x和y坐标的平方和小于等于1,说明点在圆内,将`points_inside_circle`加1,并将颜色设置为绿色;否则,将颜色设置为蓝色。将点的x和y坐标分别添加到`x_list``y_list`中,并将点的颜色添加到`colors`中。
5. 计算估计的圆的面积,公式为`pi = 4 * points_inside_circle / points_total`
6. 使用`matplotlib.pyplot`库绘制图形。首先,设置图形的大小为5x5。然后,设置x轴和y轴的范围为-1到1。接着,使用`scatter`函数绘制散点图,其中`x_list``y_list`是点的x和y坐标,`s=8`表示点的大小为8,`c=colors`表示点的颜色,`marker='o'`表示点的形状为圆形。然后,使用`Circle`函数创建一个半径为1的圆,颜色为红色,不填充。最后,使用`add_artist`函数将圆添加到图形中。
7. 使用`show`函数显示图形
7. 使用`show`函数显示图形

0 comments on commit 9fff3b0

Please sign in to comment.