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.
Start reading here: (https://docs.python.org/3.8/tutorial/modules.html)
A basic solution: Move your class code to a file, say vehicle.py, in your repl root. In main.py do
vehicle.py
main.py
import vehicle # name of the file without .py my_car = vehicle.car("Volga", "Comrade", 1986)
A simple program of mine has some examples. Have a look at Caesar Pypher.
Edit: fix markdown
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.
Start reading here: (https://docs.python.org/3.8/tutorial/modules.html)
A basic solution:
Move your class code to a file, say
vehicle.py
, in your repl root.In
main.py
doA simple program of mine has some examples.
Have a look at Caesar Pypher.
Edit: fix markdown