Say I have a simple script that depends on my input:
w = input()
print(f'Input is {w}')
If I copy and paste this script (both lines at the same time) into the interactive window, it won't pause on input
line to receive an input.
>>> w = input()
print(f'Input is {w}')
>>>
Is there any way to change this behavior?
Update: This seems to work just fine on Pycharm:
In: w = input()
print(f'Input is {w}')
>? test
Input is test