How to run windows paint with Python

2 Answers

0 votes
from subprocess import call

call(["mspaint"])


'''
run:


'''

 



answered Sep 5, 2018 by avibootz
0 votes
import os

os.system("mspaint")


'''
run:


'''

 



answered Sep 5, 2018 by avibootz

Related questions

2 answers 506 views
2 answers 372 views
372 views asked Sep 4, 2018 by avibootz
1 answer 219 views
1 answer 278 views
...