This is my hacker terminal with python! Press Enter to Scroll through the preaccessed input values.
Can I suggest that you make the inputs into slow prints. To do this you can use:
import time, sys def write(text): for char in text: sys.stdout.write(c) sys.stdout.flush() time.sleep(0.10)
Also, to to do an input system like that, you would need something like this:
while True: userCmd = input("> ") if userCmd.lower() == "hello":: print("Sup")
Can I suggest that you make the inputs into slow prints. To do this you can use:
Also, to to do an input system like that, you would need something like this: