Skip to content
Snippets Groups Projects
Commit b670b80b authored by Thomas Letzgus's avatar Thomas Letzgus
Browse files

Upload New File

parent d50d0a28
No related branches found
No related tags found
No related merge requests found
car.py 0 → 100644
class Car:
def __init__(self, car_id):
self.car_id = car_id
def get_car_id(self):
return self.car_id
def __str__(self):
return f"Car ID: {self.car_id}"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment