Anglo-Bodo Dictionary in Python
Anglo-Bodo Dictionary in Python
Session 2023-24
ON THE TOPIC:
Anglo-Bodo Dictionary in Python
Submitted to:
Mam Sarojini Basumatary
Submitted by:
Veeshal D. Bodosa, Roll No: 35
Hanti Narzary, Roll No: 16
Hrishikesh Bhowmick, Roll No: 18
Class: XII (Science)
Don Bosco H.S. School Kokrajhar
CERTIFICATE
….….………….. …..….………….
Teacher’s Signature Principal’s Signature
…………………….
School Seal
2|Page
ACKNOWLEDGEMENT
3|Page
CONTENT
Title Page
⎆ Aim of the Project 5
⎆ Action Plan 6
⎆ Introduction 7
⎆ Code 8
⎆ Output 11
⎆ 1. Add Word 11
⎆ 2. Display Word 11
⎆ 3. Search Word 12
⎆ 4. Delete Word 12
⎆ 5. Exit the Program 12
⎆ Conclusion 13
⎆ Bibliography 14
4|Page
AIM OF THE PROJECT
5|Page
ACTION PLAN
6|Page
INTRODUCTION
7|Page
CODE
# DESIGNED BY VEESHAL, HANTI $ HRISHIKESH
8|Page
print("\nEnglish Word:", result[1])
print("Pronunciation:", result[2])
print("Parts of Speech:", result[3])
print("Bodo Meaning:", result[4])
print("English Meaning:", result[5])
print("Example:", result[6])
else:
print("\nWord not found in the dictionary.")
9|Page
# Menu loop
while True:
print("\nAnglo Bodo Dictionary Menu:")
print("\n1. Add Record")
print("2. Display Record")
print("3. Search Record")
print("4. Delete Record")
print("5. Exit")
if choice == '1':
english_word = input("\nEnter English Word: ")
ringsharthi = input("Enter Pronunciation (Ringsharthi): ")
parts_of_speech = input("Enter Parts of Speech: ")
bodo_meaning = input("Enter Bodo Meaning: ")
english_meaning = input("Enter English Meaning: ")
example = input("Enter Example: ")
add_entry(english_word, ringsharthi, parts_of_speech, bodo_meaning,
english_meaning, example)
elif choice == '2':
display_records()
elif choice == '3':
english_word = input("\nEnter English Word to search: ")
search_word(english_word)
elif choice == '4':
english_word = input("\nEnter English Word to delete: ")
delete_record(english_word)
elif choice == '5':
print("\nExiting the program.")
break
else:
print("\nInvalid choice. Please enter a valid option.")
10 | P a g e
OUTPUT
1. Add Record
2. Display Record
11 | P a g e
3. Search Record
4. Delete Record
5. Exit
12 | P a g e
CONCLUSION
13 | P a g e
BIBLIOGRAPHY
Website:
⎆ https://chat.openai.com
Book:
⎆ Dhanpat Rai Publications, Computer Science with
Python Textbook Class 12, ISBN-13: 9788177002362,
ISBN-10: 8177002368
14 | P a g e