0% found this document useful (0 votes)
13 views1 page

Creating Files in Python

The document provides instructions for creating a new Python file, running it, and installing libraries. To create a file, use 'ctrl + N' followed by 'ctrl + S' to save it with a '.python' extension. To run the file, click the play button or use the command 'python filename.py' in the Anaconda prompt, and libraries can be installed using 'pip install library_name'.

Uploaded by

subhajit25
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
13 views1 page

Creating Files in Python

The document provides instructions for creating a new Python file, running it, and installing libraries. To create a file, use 'ctrl + N' followed by 'ctrl + S' to save it with a '.python' extension. To run the file, click the play button or use the command 'python filename.py' in the Anaconda prompt, and libraries can be installed using 'pip install library_name'.

Uploaded by

subhajit25
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

creating a new file:

1. ctrl + N than ctrl + s ---> [Link]

Running the file:


1. click on top right play button
2. using command 'python [Link]' in anaconda prompt

installing a library:
1. pip install 'library_name'
[
pip install uvicorn
pip install fastapi
]

You might also like