I'm almost new to python and I'm making a kind of command line. I want to make it keep open after pressing enter. In C#, I used goto
for example:
start:
a = Console.ReadLine("Enter Command:");
goto start;
But now, I don't know how to do that in python.