Just as an example, it might seem illogical. I have a get_name function as below, and wanted to write a automated script to call this function and enter to the raw_input automatically.
def get_name ():
    name = raw_input("Please enter your name : ")
    print "Hi " + name
The automated script as below, what command should I add to enter my value automatically?
def run ():
    get_name ()
    // what should I add here?
 
     
     
     
     
     
    