The first python program called first.py includes the following code:
print ('my name is viena')
How can I input the result from that first program, i.e., 'my name is viena' as input into my second program called second.py which includes the following code:
question = 'what\'s your name?'
answer = ?????HERE HOW TO INPUT THE RESULT FROM FIRST PROGRAM
print (answer)
my name is viena
Note: There should be two different python script files as I mentioned in the question.
printand(....