2
I have a Python 2.7 code that opens a PDF with os.system('meuarquivo.pdf')
and it opens right. But when opening the file it also opens an empty CMD window. Is there any way I can close this window or keep it from appearing?
os.system('MeuArquivo.pdf')
My code is completely useless until I close this file. I would like it to open as a common file and not necessarily be tied to the code.