I think it is very accurate. Because how it talks about what happened and why. Yes historical accuracy is important in films and in theatre productions because they need the right information. How it looked like. They react weirdly. The influence is that people are glad to see it and could help them get over some of there fears.Theatre actors influence people to try newer things. They actor uses prop to make them look better.The result is people laugh.Nnbecause the props were horrible.
Answer: Provided in the explanation section
Explanation:
Provided below is the program to carry out this task, i hope you can follow it clearly.
Program is run below
class Car:
def __init__(self, model, make):
self.__year_model = model
self.__make = make
self.__speed = 0
def accelerate(self):
self.__speed += 5
def brake(self):
self.__speed -= 5
def get_speed(self):
return self.__speed
car = Car("F1", "Ferrari")
for i in range(5):
car.accelerate()
print(car.get_speed())
for i in range(5):
car.brake()
print(car.get_speed())
cheers i hope this helped !!