I'd like to display the name of the variable being defined by a Python input statement. I'd like the display of the variable name to change with the name of the variable being populated by input.
Example:
S1 = input('Enter value for %variable%: ')
The expected output of the above would be:
Enter value for S1:
Can this be done?