I have tried adding folders and files to the main.py, separating the class code and the import code, but I cannot get the import code to call the class code. In other words, I need help creating the proper directories in repl.it.
Lines 3 to 18 would go in their own file named Car.py and then you’d change your import statement to be from Car import * or from Car import Car, and then it should work as intended.
How do I separate the class code into its own module from the import code?
I have tried adding folders and files to the main.py, separating the class code and the import code, but I cannot get the import code to call the class code. In other words, I need help creating the proper directories in repl.it.
Lines 3 to 18 would go in their own file named Car.py and then you’d change your import statement to be
from Car import *
orfrom Car import Car
, and then it should work as intended.