1

I'm working on a GitHub project. It's a text editor built in Python. I need to be able to run error.vbs from test.py.

How or is this possible?

Ansgar Wiechers
  • 175,025
  • 22
  • 204
  • 278
Bloxy Craft
  • 91
  • 1
  • 1
  • 10
  • Please do not add tags to the subject of your question. If you consider your question answered, [accept](http://meta.stackoverflow.com/a/5235) the answer you consider most relevant. Better yet, do some research to check if your question has been asked (and answered) before. – Ansgar Wiechers Sep 03 '17 at 20:26

1 Answers1

0

Nevermind.

I just found it out:

import os
os.system("filename.vbs 1")
Bloxy Craft
  • 91
  • 1
  • 1
  • 10