Python 畫隨機漫步圖

random_walk.py from random import choice class Randomwalk(): def __init__(self,num_points=5000): self.num_points = num_points self.x_values = [0] self.y_values = [0] d
相關文章
相關標籤/搜索