0% found this document useful (0 votes)
23 views3 pages

Python Basics

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

Python Basics

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

Day 2 :: Pyhton basics ::

Ques:: Features of Python. [ 5 marks ]


Answer::

1) Easy to Read and Write:


Python syntax is clean and straightforward,
making it easy to read and write code.
2) Interpreted Language:
Python executes code line-by-line, which
makes debugging easier.
3) Dynamically Typed:
Python automatically detects the data type of
a variable, eliminating the need for explicit
type declaration.
4) Cross-Platform Compatibility:
Python can run on various operating systems,
including Windows, macOS, and Linux,
without requiring modification.
5) Extensive Standard Library:
Python has a rich set of libraries and modules
that provide tools for various tasks, from web
development to data analysis.
6) Object-Oriented Programming:
Python supports object-oriented programming
(OOP) concepts like classes and objects,
allowing for modular and reusable code.
7) High-Level Language:
Python abstracts complex details of the
computer, enabling developers to focus on
programming logic rather than hardware
intricacies.
8) Open Source and Community-Driven:
9) Python is open source, with a large
community contributing to its development
and providing support.
10) Wide Range of Applications:
Python is used in various fields, including web
development, data science, machine learning,
artificial intelligence, scientific computing, and
more.
11) Integration Capabilities:
Python can easily integrate with other
languages and technologies, such as C, C++,
Java, and .NET.
12) Strong Support for Modules and Packages:
Python supports modular programming,
allowing developers to divide their code into
manageable chunks.
 Built-in Data Structures:
 Python provides built-in data structures such as
lists, tuples, sets, and dictionaries, facilitating

You might also like