MCPcopy Create free account
hub / github.com/LinkedInLearning/learning-python-2896241 / __init__

Method __init__

Ch2 - Basics/classes_finished.py:7–8  ·  view source on GitHub ↗
(self, bodystyle)

Source from the content-addressed store, hash-verified

5
6class Vehicle():
7 def __init__(self, bodystyle):
8 self.bodystyle = bodystyle
9
10 def drive(self, speed):
11 self.mode = "driving"

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected