• me@rohitjoshi.co

Basic Of Python – Modules, Pip And Comments

Python is a high-level programming language that is widely used for web development, scientific computing, data analysis, artificial intelligence, and many other applications.

Python is known for its simplicity, readability, and ease of use. Its syntax is designed to be as clear and concise as possible, making it an excellent language for beginners. Python also has a large and active community of developers who contribute to many libraries and tools that make programming in Python even more powerful and efficient.

Basic Hello Program of Python

Syntax :

print(“hello Rohit”)

Output: hello Rohit

What Is PIP?

pip is the packages manager for Python you can use pip to install modules on your system

Example: pip install flask (flask is the external module)

Types Of Modules :

Built-In Modules – Pre-installed In Python.

Some examples of built-in modules are as, ABC.

External Modules –  Need to install using pip.

Some examples of External modules are Tensorflow, and flask.

 

Leave a Reply

Your email address will not be published. Required fields are marked *