My code looks like this:
File A:
import os
inputA = input("Input: ")
os.system('InputTest.py')
File B:
inputB = input("Input: ") # <-- I want this to automatically get filled in with inputA
print(inputB)
I want to have the input variable from file A fill the input request in file B (in the terminal).