代码拉取完成,页面将自动刷新
# -*- coding: utf-8 -*-
"""
Created on Sun Nov 28 10:49:36 2021
@author: Administrator
"""
from math import sqrt
from math import radians
from math import cos
from math import sin
from math import pi
import matplotlib.pyplot as plt
x_values = []
y_values = []
x,y = (300,300)
for angle in range(180):
radius = 3
x += math.cos(math.radians(angle)) * radius #调用cos,sin函数(以弧度作为参数)让圆心在圆周上移动
y -= math.sin(math.radians(angle)) * radius #将角度转化为弧度,需导入math库
x_values.append(x)
y_values.append(y)
plt.xlim(xmax=1000,xmin=0)
plt.ylim(ymax=600,ymin=0)
plt.scatter(x_values, y_values, s=50)
plt.show()
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。