So you know when you connect a computer to a monitor and click extend display you get two displays and if you have another one you would have 3 different display screens... So how do I create a tkinter program that detects multiple display screens and how do I create a program that add a second page to the other monitor?
Asked
Active
Viewed 3,117 times
1 Answers
6
you could probably try screeninfo module, and get information for each monitor
import screeninfo
print(screeninfo.get_monitors())
more explanation here, you could explore yourself from there. here also a similar problem based on your case

greendino
- 416
- 3
- 17