发布网友 发布时间:2022-04-23 14:41
共2个回答
热心网友 时间:2023-07-04 11:44
import matplotlib.pyplot as plt
n = 5 #自定义最大阶乘值
r = []
for i in range(1, n+1):
temp = 1
for j in range(1, i + 1):
temp = temp * j
r.append(temp)
fig = plt.figure()
ax = fig.add_subplot(111)
ax.scatter(list(range(1, n+1)), r)
plt.show()
热心网友 时间:2023-07-04 11:44
生活,还是需要各种各样的提升。