Much like how google tries to auto-guess what is being input by the user. I am trying to figure out how much and what the user has typed before hitting enter. More difficult, I am trying to get this done through the console.
Although the input function does exist and is very easy to use.
var = input("Enter Name: ")
print(f'Hello, {var}')
I am trying to get this input 'dynamically'
Is this even possible? I imagine the code would look like:
var = imaginary_input("Enter Name: ")
while not var.complete:
current_input = var.get()
Is there a function that works similar to my 'imaginary_input' function? Any help is greatly appreciated.
(I understand that this can easily be completed through a window with a textbox, but I would prefer this to be done over the console)