Let's say I wrote the following python script:
print("Hello")
print("Line 2")
print("Goodbye")
The output would of course be:
Hello
Line 2
Goodbye
After printing this data is there any way I could read it? In other words, can you read printed data with python?