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

Python Notes

Python is an interpreted, high-level programming language known for its ease of learning, dynamic typing, and extensive libraries. It supports multiple programming paradigms including object-oriented, procedural, and functional programming. Basic syntax includes single-line comments using '#' and multi-line comments.

Uploaded by

anut21618
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)
2 views1 page

Python Notes

Python is an interpreted, high-level programming language known for its ease of learning, dynamic typing, and extensive libraries. It supports multiple programming paradigms including object-oriented, procedural, and functional programming. Basic syntax includes single-line comments using '#' and multi-line comments.

Uploaded by

anut21618
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

Python Notes

1. Introduction to Python
Python is an interpreted, high-level, general-purpose programming
language.
Features:
- Easy to learn and read.
- Dynamically typed.
- Extensive libraries (NumPy, Pandas, etc.).
- Multi-paradigm (supports OOP, procedural, and functional
programming).

2. Python Syntax Basics


Comments
- Single-line: # This is a comment
- Multi-line:

You might also like