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 run a program in python in geany?

To run a Python program in Geany, first, open your Python script in the Geany editor. Ensure that the correct file type is set to Python by selecting it from the bottom right corner. Then, click on the "Build" menu and select "Execute" or simply press F5 on your keyboard. The output will appear in the terminal window at the bottom of the Geany interface.


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)


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.


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.


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

python filename.py


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 does the program python run?

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


What is the software of MS DOS shell?

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


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.


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


How do you convert float into string in python program?

str(3.1415)