answersLogoWhite

0

open MS-DOS in the directory you have the python file in.

type "python [INSERTNAMEOFSCRIPT]"

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

How do you open .npy extension files?

The .npy file extension is opened with the program 'NumPy', a computing and database package for Python.


What has the author Wesley Chun written?

Wesley Chun has written: 'Python fundamentals' -- subject(s): Python (Computer program language) 'Core Python programming' -- subject(s): Python (Computer program language)


How do you open a python script on the mac terminal?

python filename.py


Do you need Python in your PC?

Python is just a programming software, you don't actually need it to run your computer. You can use Python if you'd like to program something, or learn how to program.


Cannot complete install program configuration?

There appears to be a configuration error. You have associated Konqueror with application/x-msdos-program, but it cannot handle this file type.


Where does the program python run?

Python is a runtime interpreter. It usually runs on the web server.


What is program segment prefix in msdos?

The program segment prefix (PSP) in MSDOS is the first 256 bytes of memory allocated by the command interpreter to load and run a program. The program itself is loaded next. The first 128 bytes of the PSP contains various structures and pointers. The second 128 bytes of the PSP initially contain the command line, and is then available as the default disk buffer for subsequent I/O.


Where did the computer language called PYTHON get its name?

Python is named after the comedy troupe Monty Python, not the genus of snake. The creators of Python intended it to be fun to program in, and hoped to reflect that in its name.


What is the software of MS DOS shell?

There is no any software for MSDOS shell as MSDOS is itself a system software.


How do you convert float into string in python program?

str(3.1415)


How do you program a python 488p car alarm?

488P Is the remote to a Python car alarm, need to be more specific on the alarm you have.


How do you make a program in python using do while loop to display the multiplication table of number from one to ten?

a = 0while a < 10 :a += 1print (a)Write the above simple script in a text editor (I use nano). Save as loop.py in home folder. To run, open a terminal and at the prompt, write: python loop.pyResult:rodney@downstairs:~$ python loop.py12345678910