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

An Introduction To Python: Tensorflow - 23U3Aic03

Python is a versatile programming language known for its simplicity, readability, and support for multiple programming paradigms. It is widely used in web development, software development, mathematics, and system scripting, and offers features like dynamic typing, garbage collection, and both compilation and interpretation. Python's ease of use makes it suitable for both beginners and experienced developers, facilitating rapid prototyping and production-ready software development.

Uploaded by

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

An Introduction To Python: Tensorflow - 23U3Aic03

Python is a versatile programming language known for its simplicity, readability, and support for multiple programming paradigms. It is widely used in web development, software development, mathematics, and system scripting, and offers features like dynamic typing, garbage collection, and both compilation and interpretation. Python's ease of use makes it suitable for both beginners and experienced developers, facilitating rapid prototyping and production-ready software development.

Uploaded by

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

TENSORFLOW – 23U3AIC03

An Introduction to Python
Python is a widely used programming language that offers several unique features and
advantages compared to languages like Java and C++.
Python is a general-purpose, dynamically typed, high-level, compiled and interpreted,
garbage-collected, and purely object-oriented programming language that supports
procedural, object-oriented, and functional programming.
It is used for:
 web development (server-side),
 software development,
 mathematics,
 system scripting.

What can Python do?


 Python can be used on a server to create web applications.
 Python can be used alongside software to create workflows.
 Python can connect to database systems. It can also read and modify files.
 Python can be used to handle big data and perform complex mathematics.
 Python can be used for rapid prototyping, or for production-ready software
development.

Feature of Python
Easy to use and Read - Python's syntax is clear and easy to read, making it an ideal language
for both beginners and experienced programmers. This simplicity can lead to faster
development and reduce the chances of errors.
Dynamically Typed - The data types of variables are determined during run-time. We do not
need to specify the data type of a variable during writing codes.
High-level - High-level language means human readable code.
Compiled and Interpreted - Python code first gets compiled into bytecode, and then
interpreted line by line. When we download the Python in our system form org we download
the default implement of Python known as CPython. CPython is considered to be Complied
and Interpreted both.
Garbage Collected - Memory allocation and de-allocation are automatically managed.
Programmers do not specifically need to manage the memory.

You might also like