How can I print directly after my input without waiting until the user answered the input statement?
def InputSaveName():
    try:
        import os, sys, time, pickle, colorama
    except Exception as e:
        print("Some modules are mssing! Install them and try again! {}".format(e))
    colorama.init()
    print("+----------------------+")
    print("What is your name adventurer?")
    name = input("> ")
    print("+----------------------+")
I want the bottom line to print without waiting for the user to put something in the input statement. In short: I want the code to run simultaneously.
 
     
     
     
     
    