Python-matplotlib随机漫步

from random import choice class RandomWalk: def __init__(self, num_points=1000): # 随机漫步的最大距离 self.num_poimts = num_points # 随机漫步的'脚步' self.x = [0] self.y
相关文章
相关标签/搜索