fortune-uwha / tesla-car-factory

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Tesla Car Factory

Table of Contents

General Information

To check my understanding of OOP, I will complete a couple of tasks and create my own Tesla factory!

Technologies Used

Python - version 3.8

Code Example

@seats_count.setter
    def seats_count(self, count: int):
        if count < 2:
            print("Seats count cannot be lower than 2!")
        else:
            self.__seats_count = count

Project Status

Project is: complete

Acknowledgements

This project was based on Turing College exercises module 2.

Contact

Created by @fortune_uwha - feel free to contact me!

License

This project is open source and available under the terms of the MIT license.

About

License:MIT License


Languages

Language:Python 100.0%