Question: Write a class Bug that models a bug moving along a horizontal line, one-dimensional. The bug moves either to the right or left. Initially, the
Write a class Bug that models a bug moving along a horizontal line, one-dimensional. The bug moves either to the right or left. Initially, the bug moves to the right, but it can turn to reverse its direction. In each move, its position changes by one unit in the current direction. Provide a constructor
def __init__(self, initialPosition)
and methods:
def turn(self) def move(self) def getPosition(self)
In Python, please include comments, docstring, and output of the code/program
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
