python从入门到编程--绘制随机漫步图代码错误

问题原因

绘制随机漫步图代码分为两个部分:

  1. 模拟随机漫步的类
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]

  def fill_walk(self):

    while len(self.x_values) < self.num_points:

      x_direction = choice([1,-1])
      x_distance = choice([0,1,2,3,4])
      x_step = x_direction * x_distance

      y_direction = choice([1,-1])
      y_distance = choice([0,1,2,3,4])
      y_step = y_direction * y_distance

      if x_step == 0 and y_step ==0:
        continue

      next_x = self.x_values[-1] + x_step
      next_y = self.y_values[-1] + y_step

      self.x_values.append(next_x)
      self.y_values.append(next_y)

  1. 绘制漫步图
import matplotlib.pyplot as plt

from random_walk import RandomWalk

rw = RandomWalk()
rw.fill_walk()

plt.scatter(rw.x_values, rw.y_values, s=15)
plt.show()


运行绘制随机漫步图时,报一下错误:
AttributeError: ‘RandomWalk’ object has no attribute ‘x_values’
排查了很久才发现模拟随机漫步的类中的初始化函数def _init_书写错误

解决方法

python对于代码的格式要求严格,空格,tab键,代码对齐等,可以使用编辑器校验。
正确的书写方法为:def init
在python的学习中仍然要扎实基础,从错误中总结前进

你可能感兴趣的:(python)