I've been working at a task for college for several hours now. I spent an hour doing the actual problem and the rest trying to achieve what I'm asking:
A python script needs to receive its input via stdin, preferably data that was redirected from a file (so I can test it), and it has to output the data to stdout in a way that I can see what it is (maybe redirect it to another file).
Please don't tell me that the Enterprise version of Visual Studio doesn't have way to feed a file data through stdin and print what comes out on stdout.
I understand how to do it internally, from the script, I just don't know where I put the data I want VS to send to stdin. I've opened the interactive terminal and started the debugger and cmd window waited for the input. Once I copied it in, nothing happened. I tried ctrl+D, still nothing.
What do I do?