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
  • 193,178
  • 25
  • 254
  • 328
Bloxy Craft
  • 131
  • 1
  • 3
  • 12

1 Answers1

1

Nevermind.

I just found it out:

import os
os.system("filename.vbs 1")
Bloxy Craft
  • 131
  • 1
  • 3
  • 12