0% found this document useful (0 votes)
2 views2 pages

Python Notes Draft

Uploaded by

ritikkumar997300
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 views2 pages

Python Notes Draft

Uploaded by

ritikkumar997300
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

Python Notes Draft (Hinglish Edition)

Ye abhi tak ka draft version hai. Isme Python ke starting concepts ko beginner-friendly Hinglish language me explain
kiya gaya hai. Aage aur advanced concepts, projects, practice questions, dry run, aur interview preparation add ki
jayegi.

Chapter 1 - Introduction to Python

Python ek high-level programming language hai jo easy syntax aur powerful features ke liye famous hai.

Chapter 2 - Variables and Data Types

Variables data store karne ke liye use hote hain. Python me int, float, string, bool jaise data types hote hain.

Chapter 3 - Input and Output

input() function user se value lene ke liye aur print() output dikhane ke liye use hota hai.

Chapter 4 - Operators

Arithmetic, comparison, logical aur assignment operators Python me calculation aur conditions ke liye use hote hain.

Chapter 5 - Conditions

if, elif aur else statements decision making ke liye use kiye jate hain.

Chapter 6 - Loops

for aur while loops repeated tasks perform karne ke liye use hote hain.

Chapter 7 - Functions

Functions reusable blocks hote hain jo code ko organized aur reusable banate hain.

Example Program
Code Explanation
name = input('Enter your name: ') Ye program user se naam lekar screen par print karta hai.
print('Hello', name)
Upcoming Topics
Aage add hone wale topics: - OOPs - File Handling - Exception Handling - JSON - Modules - Decorators - Regex -
Projects - DSA using Python

You might also like