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)
@LeonDoesCode Thank you so much...I'm thrilled that anyone replied. will try it.
@LeonDoesCode You are Great
@MaximGlisky no, you are great! Hope that it goes well, I'll check back once it gets updated.
@LeonDoesCode Thx bro you are awesome
@MaximGlisky Time code works great
@LeonDoesCode Also I have a question... How do I make a program recieve my input and output something... For example i say "Hello" and it outputs "Sup"
@MaximGlisky I can help if you want to collaborate..
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:
@LeonDoesCode Thank you so much...I'm thrilled that anyone replied. will try it.
@LeonDoesCode You are Great
@MaximGlisky no, you are great! Hope that it goes well, I'll check back once it gets updated.
@LeonDoesCode Thx bro you are awesome
@MaximGlisky Time code works great
@LeonDoesCode Also I have a question... How do I make a program recieve my input and output something... For example i say "Hello" and it outputs "Sup"
@MaximGlisky I can help if you want to collaborate..
Also, to to do an input system like that, you would need something like this: