CHAPTER 05
⌨️ Input & Output
User Input, Print Formatting Hindi mein
Advertisement
input() Function
input() function user se keyboard par kuch bhi likhwata hai. Hamesha String return karta hai!
python
name = input("Aapka naam: ") print(f"Namaste, {name}!") # Number input — int() lagana zaruri! age = int(input("Aapki umar: ")) print(f"10 saal baad: {age + 10}") # Float input price = float(input("Price: ")) gst = price * 0.18 print(f"GST: {gst:.2f}")
OUTPUT
Aapka naam: RahulNamaste, Rahul!
Aapki umar: 20
10 saal baad: 30
print() Advanced
Advanced print formatting:
python
# sep — separator badlo print("2026","03","13", sep="-") # 2026-03-13 # end — ending badlo print("Loading", end="...") print("Done!") # Loading...Done! # Thousands separator salary = 1500000 print(f"Salary: {salary:,}") # 1,500,000
OUTPUT
2026-03-13Loading...Done!
Salary: 1,500,000
Advertisement
Practical: Calculator
Input/output ka use karke simple calculator:
python
print("Simple Calculator") n1 = float(input("Pehla number: ")) op = input("Operator (+,-,*,/): ") n2 = float(input("Doosra number: ")) if op=="+": res=n1+n2 elif op=="-": res=n1-n2 elif op=="*": res=n1*n2 elif op=="/": res=n1/n2 if n2!=0 else "Error!" print(f"{n1} {op} {n2} = {res}")
OUTPUT
15.0 * 4.0 = 60.0Input/Output — Practical Examples
Ab hum Input/Output ke kuch aur practical examples dekhenge jo real projects mein use hote hain.
Yeh examples copy karo, run karo, aur khud modify karke practice karo!
python — practice.py
# Chapter 5: Input/Output — Advanced Practice print("=== Input/Output Practice ===") # Example 1: Basic usage result = "Python mein Input/Output bahut powerful hai!" print(result) # Example 2: Real world use data = ["Input/Output", "Python", "Hindi", "PythonHindi.in"] for item in data: print(f"Item: {item}") print("\nPractice complete! Great job! 🎉")
OUTPUT
=== Input/Output Practice ===Python mein Input/Output bahut powerful hai!
Item: Input/Output
Item: Python
Practice complete! Great job! 🎉
Input/Output ke Important Concepts
Is chapter mein yeh important concepts cover hue hain. Sab yaad karo!
- input() — Input/Output mein important concept
- print() — Input/Output mein important concept
- f-string — Input/Output mein important concept
- format() — Input/Output mein important concept
- sep= — Input/Output mein important concept
- end= — Input/Output mein important concept
💡 Tip: In concepts ko ek ek karke practice karo.
Jab ek concept pakad aa jaye tab agle par jao!
Common Mistakes — Dhyan Rakho!
Beginners Input/Output mein yeh galtiyan aksar karte hain:
❌ Galat Tarika
Concept samjhe bina code copy karna. Errors aate hain to panic karna. Stack Overflow se seedha copy-paste karna bina samjhe.
✅ Sahi Tarika
Pehle concept padho, phir khud likhne ki koshish karo. Error message padho — woh hint deta hai. Google karo error message ke saath!
❌ Common Error
Indentation galat karna — Python mein spaces bahut important hain. Tab aur spaces mix karna bhi error deta hai.
✅ Fix
Hamesha 4 spaces use karo indentation ke liye. VS Code mein "Convert Indentation to Spaces" option use karo.
Practice Exercises — Khud Try Karo!
Is chapter ko properly samajhne ke liye yeh exercises karo:
- Is chapter ke sab code examples khud type karo — copy-paste mat karo!
- Har example mein kuch changes karo aur dekho kya hota hai
- Ek chhota program banao jo is chapter ke concepts use kare
- Apne dost ya family member ko explain karo yeh concept — teaching se best practice hoti hai
- HackerRank ya LeetCode par is topic ke easy problems solve karo
Real World mein Input/Output ka Use
Input/Output sirf theory nahi — real companies mein actually use hota hai:
Companies jo Python use karti hain:
Google — search algorithms, YouTube recommendations
Instagram — backend aur data processing
Netflix — recommendation engine
Spotify — music recommendation
NASA — space calculations aur simulations
Razorpay, Zerodha — Indian fintech companies
Jab aap Input/Output master kar lete hain, to aap in companies ke liye bhi kaam kar sakte hain! Yeh concept aapke Python journey mein ek important milestone hai.
Companies jo Python use karti hain:
Google — search algorithms, YouTube recommendations
Instagram — backend aur data processing
Netflix — recommendation engine
Spotify — music recommendation
NASA — space calculations aur simulations
Razorpay, Zerodha — Indian fintech companies
Jab aap Input/Output master kar lete hain, to aap in companies ke liye bhi kaam kar sakte hain! Yeh concept aapke Python journey mein ek important milestone hai.
Summary aur Next Steps
Is chapter mein humne Input/Output ke baare mein bahut kuch seekha. Ab aage kya karein:
✅ Is chapter ke sab examples ek baar aur run karo
✅ Apna khud ka ek program banao
✅ Agla chapter padho aur connect karo
✅ Projects section mein related project banao
Remember: Python sikhna ek journey hai — roz thoda thoda karo aur consistent raho. 3-6 mahine mein aap ek confident Python developer ban sakte hain!
✅ Is chapter ke sab examples ek baar aur run karo
✅ Apna khud ka ek program banao
✅ Agla chapter padho aur connect karo
✅ Projects section mein related project banao
Remember: Python sikhna ek journey hai — roz thoda thoda karo aur consistent raho. 3-6 mahine mein aap ek confident Python developer ban sakte hain!
🚀 Next Step: Agla chapter padho — wahan aur powerful concepts hain
jo is chapter ke saath milke real programs banane mein help karenge!
Interview Mein Pooche Jane Wale Sawal
Job interviews mein is topic se yeh sawal aksar pooche jaate hain:
| Sawal | Short Answer |
|---|---|
| Python mein memory kaise manage hoti hai? | Automatic garbage collection — reference counting se |
| Python interpreted hai ya compiled? | Interpreted — line by line execute hota hai |
| Python 2 aur 3 mein fark? | Python 2 dead hai — hamesha Python 3 use karo |
| GIL kya hai? | Global Interpreter Lock — ek time par ek thread run hota hai |
| Mutable aur Immutable mein fark? | Mutable = badal sakta hai (list, dict). Immutable = nahi badlta (int, str, tuple) |
Aur Seekho — Resources
Python aur deep seekhne ke liye yeh resources use karo:
Free Resources:
✅ docs.python.org — Official Python documentation
✅ pythonhindi.in — Hamare sab chapters aur projects (aap yahaan hain!)
✅ w3schools.com/python — Quick reference
✅ realpython.com — Advanced tutorials
✅ YouTube — Hindi mein Python tutorials
Practice Platforms:
✅ HackerRank — Python challenges
✅ LeetCode — Problem solving
✅ Codewars — Fun challenges
✅ Project Euler — Math + Programming
Books (Recommended):
✅ "Python Crash Course" — Eric Matthes
✅ "Automate the Boring Stuff" — Al Sweigart (Free online!)
✅ "Fluent Python" — Advanced ke liye
Free Resources:
✅ docs.python.org — Official Python documentation
✅ pythonhindi.in — Hamare sab chapters aur projects (aap yahaan hain!)
✅ w3schools.com/python — Quick reference
✅ realpython.com — Advanced tutorials
✅ YouTube — Hindi mein Python tutorials
Practice Platforms:
✅ HackerRank — Python challenges
✅ LeetCode — Problem solving
✅ Codewars — Fun challenges
✅ Project Euler — Math + Programming
Books (Recommended):
✅ "Python Crash Course" — Eric Matthes
✅ "Automate the Boring Stuff" — Al Sweigart (Free online!)
✅ "Fluent Python" — Advanced ke liye
Python Career Guide 2026
Python seekhne ke baad career ke kitne options hain — poori list dekho:
Job Roles aur Salary (India 2026):
Job Roles aur Salary (India 2026):
| Role | Skills | Salary Range |
|---|---|---|
| Junior Python Developer | Python basics, Flask/Django | Rs 3-6 LPA |
| Python Developer | 2-3 years exp, APIs, DB | Rs 6-12 LPA |
| Senior Python Developer | 5+ years, System design | Rs 15-25 LPA |
| Data Analyst | Pandas, SQL, Visualization | Rs 5-12 LPA |
| Data Scientist | ML, Statistics, Python | Rs 8-20 LPA |
| ML Engineer | TensorFlow, PyTorch, Cloud | Rs 12-30 LPA |
| DevOps Engineer | Python scripts, Docker, CI/CD | Rs 8-18 LPA |
| Freelancer | Any Python skill | Rs 20,000-2,00,000/month |
💰 Tip: Python Developer ki demand 2026 mein record high hai India mein.
Abhi seekhna shuru karo — 6 mahine mein job ready ho sakte hain!
Chapter 5 — Deep Practice aur Mastery
Python sikhne ka sabse accha tarika hai — practice, practice, aur practice!
Input Output ko properly master karne ke liye yahan kuch aur detailed examples hain
jo aapki understanding ko aur gehri karenge.
Yeh examples real projects se liye gaye hain — inhe samjho aur apne code mein use karo. Ek baar yeh concepts clear ho gaye, to aap confidently koi bhi Python project bana sakte hain.
Yeh examples real projects se liye gaye hain — inhe samjho aur apne code mein use karo. Ek baar yeh concepts clear ho gaye, to aap confidently koi bhi Python project bana sakte hain.
python — chapter05_advanced.py
# Chapter 5: Input Output — Advanced Examples # Yeh code copy karo aur run karo! # Example 1: Basic concept print("=== Chapter 5: Input Output ===") # Example 2: List operations items = ["Python", "Hindi", "Code", "Practice"] for i, item in enumerate(items, 1): print(f"{i}. {item}") # Example 3: Dictionary usage chapter_info = { "number": 5, "title": "Input Output", "level": "Beginner", "done": False } for key, value in chapter_info.items(): print(f" {key:10}: {value}") # Example 4: Function def practice_summary(chapter, completed=False): status = "Complete ✅" if completed else "In Progress ⏳" return f"Chapter {chapter}: {status}" print(practice_summary(5)) print(practice_summary(5, True))
OUTPUT
=== Chapter 5: Input Output ===1. Python
2. Hindi
3. Code
4. Practice
number : 5
title : Input Output
level : Beginner
done : False
Chapter 5: In Progress ⏳
Chapter 5: Complete ✅
Python Community aur Help Kaise Lein
Python seekhte waqt aapko problems aayengi — yeh normal hai! Har developer ko aati hain.
Yahan bataya gaya hai ki help kahan se lein:
1. Error message padho:
Python ka error message bahut helpful hota hai. Jab error aaye to poora message padho — woh exactly batata hai kya galat hua aur kahan.
2. Google karo:
Error message ko quotes mein Google karo: "TypeError: unsupported operand" Mostly Stack Overflow par answer milega.
3. Stack Overflow:
stackoverflow.com — duniya ke sabse helpful developer community. Aapka koi bhi sawal already wahan answer ho chuka hoga!
4. Python Official Docs:
docs.python.org — har function ki complete documentation. Advanced learners ke liye must-read.
5. PythonHindi.in:
Hamare sab 30 chapters aur 60 projects free mein available hain. Koi concept samajh nahi aaya to related chapter dobara padho!
6. YouTube:
Hindi mein bahut saare Python tutorials available hain. Visual seekhne waalon ke liye perfect!
1. Error message padho:
Python ka error message bahut helpful hota hai. Jab error aaye to poora message padho — woh exactly batata hai kya galat hua aur kahan.
2. Google karo:
Error message ko quotes mein Google karo: "TypeError: unsupported operand" Mostly Stack Overflow par answer milega.
3. Stack Overflow:
stackoverflow.com — duniya ke sabse helpful developer community. Aapka koi bhi sawal already wahan answer ho chuka hoga!
4. Python Official Docs:
docs.python.org — har function ki complete documentation. Advanced learners ke liye must-read.
5. PythonHindi.in:
Hamare sab 30 chapters aur 60 projects free mein available hain. Koi concept samajh nahi aaya to related chapter dobara padho!
6. YouTube:
Hindi mein bahut saare Python tutorials available hain. Visual seekhne waalon ke liye perfect!
Chapter 5 — Final Quiz aur Revision
Chapter complete karne se pehle yeh quick revision karo:
✅ Is chapter ke main concepts kya hain?
✅ Koi bhi code example bina dekhke likh sakte ho?
✅ Ek real problem mein yeh concept kaise use hoga?
✅ Agla chapter ke liye ready ho?
Agar upar ke sawalon ka jawab haan hai — congratulations! Aap is chapter ke concepts samajh gaye hain. Agla chapter start karo!
Agar nahi — koi baat nahi! Yeh chapter dobara padho, examples run karo, aur phir agla chapter start karo. Learning mein time lagta hai — patience rakho!
✅ Is chapter ke main concepts kya hain?
✅ Koi bhi code example bina dekhke likh sakte ho?
✅ Ek real problem mein yeh concept kaise use hoga?
✅ Agla chapter ke liye ready ho?
Agar upar ke sawalon ka jawab haan hai — congratulations! Aap is chapter ke concepts samajh gaye hain. Agla chapter start karo!
Agar nahi — koi baat nahi! Yeh chapter dobara padho, examples run karo, aur phir agla chapter start karo. Learning mein time lagta hai — patience rakho!
🎯 QUICK QUIZ — Chapter 05
input() function hamesha kaun sa type return karta hai?
Advertisement
📝 Chapter Summary
Input aur Output Python programs ko interactive banate hain. input() se user se data lena aur print() se result dikhana — yeh do functions har program mein use hote hain.
🧠 Is Chapter ke Important Concepts
| Concept | Kya karta hai |
|---|---|
input() | User se keyboard se string lena |
print() | Screen par output dikhana |
int(input()) | Number input lena |
float(input()) | Decimal number input |
sep= | Print mein separator set karna |
end= | Print ke baad kya aaye |
f-string | Formatted output |
{:.2f} | 2 decimal places format |
💡 Pro Tips — Dhyan Rakho!
Yeh tips beginners aksar miss karte hain:
- input() hamesha string deta hai — zarurat ho to convert karo
- print() mein sep aur end parameters useful hain
- f-string mein {value:.2f} = 2 decimal places
- print() bina argument ke blank line print karta hai
- Multiple values print karo: print(a, b, c)
🏋️ Practice Karo — Khud Try Karo!
Chapter complete karne ke baad yeh exercises khud banao:
- User ka naam lo aur greeting print karo
- Do numbers lo aur 4 operations ka result do
- User ki umar lo aur batao 10 saal baad kya hogi
- Name aur marks lo, grade calculate karo
- Receipt format mein shopping bill print karo
❓ Aksar Pooche Jane Wale Sawal
Q: input() se number kaise lein?
A: int(input('Number: ')) ya float(input('Decimal: ')).
A: int(input('Number: ')) ya float(input('Decimal: ')).
Q: print() mein space kyun aata hai?
A: Default sep=' ' hota hai. sep='' karo agar space nahi chahiye.
A: Default sep=' ' hota hai. sep='' karo agar space nahi chahiye.
Q: User ka input validate kaise karein?
A: try-except use karo: try: n=int(input()) except ValueError: print('Error').
A: try-except use karo: try: n=int(input()) except ValueError: print('Error').
Q: Output ko file mein kaise save karein?
A: print('text', file=open('output.txt','w')) — yeh file mein save hoga.
A: print('text', file=open('output.txt','w')) — yeh file mein save hoga.
📚 Input aur Output — Real World mein Kahan Use Hota Hai?
Input aur Output ka concept sirf Python mein nahi — har programming language mein hota hai.
Isko samajhna aapko ek better programmer banata hai.
Real World Examples:
Web apps mein Input aur Output ka use developers roz karte hain. Jab aap Instagram use karte ho, Netflix dekhte ho, ya Google search karte ho — in sab ke backend mein Python aur is chapter ke concepts kaam karte hain.
Beginners ke liye yeh chapter ek strong foundation banata hai. Jitna zyada practice karoge, utna confident feel karoge. Code likhna seekhna ek skill hai — aur skills practice se aati hain!
Agle Chapter mein kya hai?
Agla chapter hai Conditions — jo is chapter ke concepts ko aur powerful banata hai. Dono milke ek complete Python programmer banate hain!
Real World Examples:
Web apps mein Input aur Output ka use developers roz karte hain. Jab aap Instagram use karte ho, Netflix dekhte ho, ya Google search karte ho — in sab ke backend mein Python aur is chapter ke concepts kaam karte hain.
Beginners ke liye yeh chapter ek strong foundation banata hai. Jitna zyada practice karoge, utna confident feel karoge. Code likhna seekhna ek skill hai — aur skills practice se aati hain!
Agle Chapter mein kya hai?
Agla chapter hai Conditions — jo is chapter ke concepts ko aur powerful banata hai. Dono milke ek complete Python programmer banate hain!
🎯 Is Chapter ko Master Karne ke Liye
Kisi bhi programming concept ko master karne ke liye teen cheezein zaroori hain:
1. Samjho (Understand) — Concept kya hai aur kyon hai.
2. Likho (Write) — Khud code likho, copy-paste mat karo.
3. Badlo (Modify) — Code mein changes karo, experiment karo.
Yeh chapter mein diye gaye sab examples khud run karo apne computer ya Replit.com par. Errors aayenge — woh normal hai. Error message padho, samjho, fix karo.
Python ke official docs bhi helpful hain: docs.python.org — har function ki complete information wahan milti hai.
1. Samjho (Understand) — Concept kya hai aur kyon hai.
2. Likho (Write) — Khud code likho, copy-paste mat karo.
3. Badlo (Modify) — Code mein changes karo, experiment karo.
Yeh chapter mein diye gaye sab examples khud run karo apne computer ya Replit.com par. Errors aayenge — woh normal hai. Error message padho, samjho, fix karo.
Python ke official docs bhi helpful hain: docs.python.org — har function ki complete information wahan milti hai.