Python Programming Bootcamp - 9th Grade (Bilingual: English + Telugu Romanization)
Python Programming Bootcamp - 9th Grade
Bilingual Edition: English + Telugu (Roman script)
Author: SK. MD. Rehmath Hussain
Welcome! This bootcamp is a fast, practical path to learn Python. Each chapter includes short lessons,
example problems, and complete solutions.
Telugu (Roman): Sveegatam! Ee bootcamp miiku Python nerchukovadaniki vegamaina, prayogaatmaka
margam. Prati adhyayam-lo chinna paathalu, udaaharana samasyalu, mariyu sampoorna parihaaramulu
untayi.
, Python Programming Bootcamp - 9th Grade (Bilingual: English + Telugu Romanization)
Chapter 1: Getting Started with Python | Adhyayam 1: Python Parichayam
What is Python? A beginner-friendly programming Python ante emi? Oka aarambhakula-kosam
language. sulabhamaina programming bhaasha.
Install Python and use an editor like IDLE or VS Python install chesi IDLE leda VS Code lantivi
Code. vadandi.
First program: Modati program:
print('Hello, World!') print('Hello, World!')
Example: Print your name and favourite subject. Udaaharanam: Mee peru mariyu istamaina subject
Solution: ni print cheyyandi.
print('My name is Rehmath') Parihaaram:
print('My favourite subject is Science') print('Na peru Rehmath')
print('Na istamaina subject Science')
Chapter 2: Variables and Data Types | Adhyayam 2: Variables mariyu Data
Types
Variables store data with names. Common types: Variables anavi data ni peru tho nilva cheyyadaniki
int, float, str, bool. upayogistaru. Sadharana types: int, float, str, bool.
Example: Udaaharanam:
name='Rehmath'; age=14; is_student=True name='Rehmath'; age=14; is_student=True
print(name, age, is_student) print(name, age, is_student)
Exercise: Store name, age, grade; print neatly. Abhyasam: Name, age, grade ni nilva chesi baga
print cheyyandi.
Chapter 3: Operators and Input | Adhyayam 3: Operators mariyu Input
Use operators (+,-,*,/,%,==) and take input with Operators (+,-,*,/,%,==) vaadandi mariyu input()
input(). dwara vinyogadarsini nundi viluvalu teesukondi.
Example: Udaaharanam:
a=int(input('A: ')); b=int(input('B: ')) a=int(input('A: ')); b=int(input('B: '))
print('Sum:', a+b) print('Sum:', a+b)
Exercise: Read two numbers and show sum, Abhyasam: Rendu sankhyalu teesukoni, motta,
difference, product, and quotient. theda, guna, bhagakarana chupinchandi.
Chapter 4: Conditional Statements (if-elif-else) | Adhyayam 4: Shartu vakyalu
(if-elif-else)
Decide with if/elif/else. if/elif/else to nirnayam cheyyandi.
Example: Udaaharanam:
marks=int(input('Marks: ')) marks=int(input('Marks: '))
if marks>=90: print('A+') if marks>=90: print('A+')
elif marks>=75: print('A') elif marks>=75: print('A')
else: print('Improve') else: print('Improve')
Mini project: Grade calculator using if/elif/else. Chinna pariyojana: if/elif/else vaadini upayoginchi
Python Programming Bootcamp - 9th Grade
Bilingual Edition: English + Telugu (Roman script)
Author: SK. MD. Rehmath Hussain
Welcome! This bootcamp is a fast, practical path to learn Python. Each chapter includes short lessons,
example problems, and complete solutions.
Telugu (Roman): Sveegatam! Ee bootcamp miiku Python nerchukovadaniki vegamaina, prayogaatmaka
margam. Prati adhyayam-lo chinna paathalu, udaaharana samasyalu, mariyu sampoorna parihaaramulu
untayi.
, Python Programming Bootcamp - 9th Grade (Bilingual: English + Telugu Romanization)
Chapter 1: Getting Started with Python | Adhyayam 1: Python Parichayam
What is Python? A beginner-friendly programming Python ante emi? Oka aarambhakula-kosam
language. sulabhamaina programming bhaasha.
Install Python and use an editor like IDLE or VS Python install chesi IDLE leda VS Code lantivi
Code. vadandi.
First program: Modati program:
print('Hello, World!') print('Hello, World!')
Example: Print your name and favourite subject. Udaaharanam: Mee peru mariyu istamaina subject
Solution: ni print cheyyandi.
print('My name is Rehmath') Parihaaram:
print('My favourite subject is Science') print('Na peru Rehmath')
print('Na istamaina subject Science')
Chapter 2: Variables and Data Types | Adhyayam 2: Variables mariyu Data
Types
Variables store data with names. Common types: Variables anavi data ni peru tho nilva cheyyadaniki
int, float, str, bool. upayogistaru. Sadharana types: int, float, str, bool.
Example: Udaaharanam:
name='Rehmath'; age=14; is_student=True name='Rehmath'; age=14; is_student=True
print(name, age, is_student) print(name, age, is_student)
Exercise: Store name, age, grade; print neatly. Abhyasam: Name, age, grade ni nilva chesi baga
print cheyyandi.
Chapter 3: Operators and Input | Adhyayam 3: Operators mariyu Input
Use operators (+,-,*,/,%,==) and take input with Operators (+,-,*,/,%,==) vaadandi mariyu input()
input(). dwara vinyogadarsini nundi viluvalu teesukondi.
Example: Udaaharanam:
a=int(input('A: ')); b=int(input('B: ')) a=int(input('A: ')); b=int(input('B: '))
print('Sum:', a+b) print('Sum:', a+b)
Exercise: Read two numbers and show sum, Abhyasam: Rendu sankhyalu teesukoni, motta,
difference, product, and quotient. theda, guna, bhagakarana chupinchandi.
Chapter 4: Conditional Statements (if-elif-else) | Adhyayam 4: Shartu vakyalu
(if-elif-else)
Decide with if/elif/else. if/elif/else to nirnayam cheyyandi.
Example: Udaaharanam:
marks=int(input('Marks: ')) marks=int(input('Marks: '))
if marks>=90: print('A+') if marks>=90: print('A+')
elif marks>=75: print('A') elif marks>=75: print('A')
else: print('Improve') else: print('Improve')
Mini project: Grade calculator using if/elif/else. Chinna pariyojana: if/elif/else vaadini upayoginchi