Question:
i want to run a new code from another folder but it does not work, can you please help me out!!!
Replit Profile: https://replit.com/@SwarupKumar2
Question:
i want to run a new code from another folder but it does not work, can you please help me out!!!
Replit Profile: https://replit.com/@SwarupKumar2
The entrypoint
variable in the hidden file .replit
specifies which file to run initially. So the run button will only run that one file. You can change this variable to the one you want.
To run the entrypoint file AND a different file, you need to import it in the entrypoint file.
# Week1/4_Operators.py
from Week2 import 1_Variables
every time if i want to make new file/ folder i need to change this entrypoint???/ Please give me a permanent solution where there is no need to change it again and again when i want to make new file/ folder, and I can get the output of running any file whenever I want.
If you want to run the last edited file, take a look at this post:
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.