from docx import Document # Create a new Word
document doc = Document() # Title
doc.add_heading('CURRICULUM VITAE', level=1) #
Personal Details doc.add_paragraph('Name: Your Full
Name') doc.add_paragraph('Mobile: +91-
XXXXXXXXXX') doc.add_paragraph('Email:
yourname@[Link]') doc.add_paragraph('LinkedIn:
[Link]/in/yourprofile')
doc.add_paragraph('Address: Your Full Address')
doc.add_paragraph() # Career Objective
doc.add_heading('Career Objective', level=2)
doc.add_paragraph("Motivated and detail-oriented [Link]
student with a solid understanding of accounting, finance,
" "and business operations. Seeking an opportunity to
contribute to an organization where I can apply " "my
knowledge and grow professionally.") # Educational
Qualifications doc.add_heading('Educational
Qualifications', level=2) table = doc.add_table(rows=1,
cols=4) hdr_cells = [Link][0].cells hdr_cells[0].text =
'Qualification' hdr_cells[1].text = 'Institute / Board'
hdr_cells[2].text = 'Year' hdr_cells[3].text = 'Percentage /
CGPA' records = [ ("[Link] (Bachelor of Commerce)",
"Your College/University Name", "YYYY – YYYY",
"XX% / [Link] CGPA"), ("Higher Secondary (12th)",
"School Name, Board", "YYYY", "XX%"), ("Secondary
(10th)", "School Name, Board", "YYYY", "XX%") ] for
qual, inst, year, score in records: row_cells =
table.add_row().cells row_cells[0].text = qual
row_cells[1].text = inst row_cells[2].text = year
row_cells[3].text = score # Technical Skills
doc.add_heading('Technical Skills', level=2) skills = [
"Tally ERP / Zoho Books (if applicable)", "MS Office
Suite (Excel, Word, PowerPoint)", "Financial Analysis &
Reporting", "Data Entry & Accuracy", "GST & Basic
Taxation (if studied)", "Business Communication" ] for
skill in skills: doc.add_paragraph(skill, style='List Bullet')
# Academic Projects doc.add_heading('Academic
Projects', level=2) doc.add_paragraph("Project Title:
Financial Performance Analysis of XYZ Ltd.")
doc.add_paragraph("Description: Conducted an in-depth
analysis of XYZ Ltd.’s financial statements over a 3-year
" "period using key ratios and trend analysis tools.") #
Internship Experience doc.add_heading('Internship
Experience', level=2) doc.add_paragraph("Intern –
Accounting Department") doc.add_paragraph("Company
Name, City — Month Year to Month Year")
doc.add_paragraph("• Maintained day-to-day transaction
records") doc.add_paragraph("• Assisted in invoice
generation and GST filing") doc.add_paragraph("•
Worked on Tally ERP for voucher entries") #
Certifications doc.add_heading('Certifications', level=2)
certs = [ "Certificate in Tally ERP 9 – Institute Name –
Year", "GST Basics Certification – Online
Platform/Institute – Year" ] for cert in certs:
doc.add_paragraph(cert, style='List Bullet') #
Achievements & Activities
doc.add_heading('Achievements & Activities', level=2)
achievements = [ "Participated in Inter-College Business
Quiz Competition", "Member of Commerce/Finance Club
in college", "Volunteered in Annual College Fest/Event" ]
for achievement in achievements:
doc.add_paragraph(achievement, style='List Bullet') #
Languages Known doc.add_heading('Languages Known',
level=2) languages = ["English – Fluent", "Hindi –
Fluent", "Other Languages – (Optional)"] for language in
languages: doc.add_paragraph(language, style='List
Bullet') # Declaration doc.add_heading('Declaration',
level=2) doc.add_paragraph("I hereby declare that the
above information is true and correct to the best of my
knowledge and belief.") doc.add_paragraph("Date:
DD/MM/YYYY") doc.add_paragraph("Place: Your City")
doc.add_paragraph("Signature: ") # Save the document
[Link]("BCom_Student_CV.docx")