motrix
motrix

Reputation: 29

Is there a way to run python scripts without installing anything?

Since installing anything is forbidden and python is unavailable on the School PC, I have only access to Notepad++[[[I know there is a way, but it requires installing something, which i cannot do]]] and visual basic, can I use any of those to run python scripts?

Upvotes: 2

Views: 2217

Answers (4)

Cristo Ferrao
Cristo Ferrao

Reputation: 105

use online code compiler or its not possible without installing python

https://www.programiz.com/python-programming/online-compiler/

Upvotes: 0

Adon Bilivit
Adon Bilivit

Reputation: 27033

No you can't. You would have to install a Python runtime environment. If you're running macOS you will have Python by default but that is not the case if you're on Windows

Upvotes: 1

Don CorliJoni
Don CorliJoni

Reputation: 248

No, you need a python interpreter. And with this you can run scripts over the console. But you can also use an online interpreter https://www.online-python.com/

Upvotes: 5

No, you need to download Python interpreter to be able to run python scripts.

Edit: Or replit.com

Upvotes: 2

Related Questions