Say I have a simple Python (user-interactive) script name.py:
name.py
print(\'Enter your name:\') x = input() print(\'Hello, \' + x)
Wha