Is it possible to send arguments to a Python3 background process?
$python3 message.py & # Linux: execute script in background
import time
s = 'foo'
terminal_msg = False # pseudocode
while True:
if terminal_msg: # pseudocode
s = terminal_arg # pseudocode
print(s)
time.sleep(5)