Is it possible to generate 2 different output windows with a different output on each of them (I'm on Windows 11)? For example, lets say there are 2 functions, a and b:
def a():
   print('This is output A')
def b():
   print('This is output B')
What I wanted to do is to get function a output on a console window, but get function b's output on another one. Instead of this
This is output A
This is output B
I need this
# WINDOW 1
This is output A
# WINDOW 2
This is output B
 
    