PYTHON CHAPTERWISE HANDWRITTEN NOTES PDF
Python Full-Handwritten Notes Pdf |
CHAPTERS NAME | NOTES.pdf |
---|---|
Chapter:1 |
CLICK HERE |
Chapter:2 |
CLICK HERE |
Chapter:3 |
CLICK HERE |
Chapter:4 |
CLICK HERE |
Chapter:5 |
CLICK HERE |
Chapter:6 |
CLICK HERE |
Chapter:7 |
CLICK HERE |
Chapter:8 |
CLICK HERE |
Chapter:9 |
CLICK HERE |
Chapter:10 |
CLICK HERE |
ONE SHOT/QUICK REVISION ABOUT THE NOTE:
- HISTORY OF PYTHON:
Python was created/developed by Guido van Rossum and first released in 1991. It is an interpreted, high-level, general-purpose programming language. Python's design philosophy emphasizes code readability, and its syntax allows programmers to express concepts in fewer lines of code than languages like C++ or Java.
Guido van Rossum is also known as the father of the PYTHON Programming language.
- PYTHON SYNTAX:
The Python syntax defines a set of rules that are used to create a Python Program. The Python Programming Language Syntax has many similarities to Perl, C, and Java Programming Languages. However, there are some definite differences between the languages.
- PYTHON COMMENTS:
PYTHON comments are used to make a line to understand the user who can see the code.
Comments are used to write a line that will never run by a Python interpreter. the line called Python Comments.
- PYTHON STRING:
A string in Python is a sequence of characters enclosed within single quotes (' ') or double quotes (" "). It is an ordered collection of characters that can include letters, digits, symbols, and whitespace. Strings are used to represent textual data and can be manipulated using various string methods and operations provided by the Python programming language.
- PYTHON OPERATORS:
An operator is nothing it's a symbol that's used for some operation in code. operator being performed as a process between two operands. Operators are many types but here we discuss some operators that are used in the Python programming language
- PYTHON VARIABLES:
- A variable is a container that stores a data value in computer memory.
- Python Variables can hold various data types, including integers, floats, strings, boolean expressions, tuples, and lists.
0 Comments