Hi everyone I have a question but I don't know if it can be done in python.
Ok so this is what I want to do:
I have two scripts
string = "hello world"
and
def output():
print string
Now what I want to do is have both scripts in different files, but when I run the file with the second script I would get it to print "hello world", from the other file. I hope that makes sense and is it possible in python?