I am trying to use variables created in one file and still use them in another file without having to run all of the code from the first file.
Would I be better off saving the variables to a text file and calling the text file in my second python file?
Ex. File #1
name = input('What is your name')
job = input('How do you earn your money')
user_input = name, job
File #2 I want to be able to call the input from the first file for name without having to import all of rest of the code in file #1