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

Python Own

Python is a high-level programming language known for its simple and readable syntax, allowing for less code and improved readability. It supports multiple programming paradigms, including object-oriented, functional, and procedural programming, and features dynamic typing and automatic garbage collection. The print() function is commonly used to display text on the screen.

Uploaded by

srikipro
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)
5 views1 page

Python Own

Python is a high-level programming language known for its simple and readable syntax, allowing for less code and improved readability. It supports multiple programming paradigms, including object-oriented, functional, and procedural programming, and features dynamic typing and automatic garbage collection. The print() function is commonly used to display text on the screen.

Uploaded by

srikipro
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

PYTHON

Introduction:

1. High level programming language


2. Simple and readable syntax
3. Very less code,improves readability
4. Automatically detects variable types at runtime
5. Support object oriented programming ,functional programming,procedural
programming.
6. Dynamically typed(don’t need to specify the data type of a variable) and
automatic garbage collection(Garbage = unused memory
Garbage collection = cleaning unused memory
Ex: x=10
X=20
Now 10 no longer exist, it is automatically removed

Print() function
 Used to display text on the screen
 Ex:print(“srikipro”)
Srikipro is a string ,enclosed in a double quotes(or single)

You might also like