Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
8 views3 pages

Create Resume

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)
8 views3 pages

Create Resume

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
You are on page 1/ 3

‭from docx import Document‬

‭ Create the .docx document in Vitthal's format but with Dhanshri's data‬
#
‭doc = Document()‬
‭doc.add_heading("DHANSHRI S. IKHAR", 0)‬
‭doc.add_paragraph("E-mail ID: [email protected]")‬
‭doc.add_paragraph("Phone: +91 7448233119")‬
‭doc.add_paragraph("Address: Nagpur, MH, 441122")‬

‭ 1. Career Objective‬
#
‭doc.add_heading("1. Career Objective:", level=1)‬
‭doc.add_paragraph(‬
‭"To work in a reputed organization where I can meet my career goals and add value."‬
‭)‬

‭ 2. Career Profile‬
#
‭doc.add_heading("2. Career Profile:", level=1)‬
‭doc.add_paragraph(‬
‭"Experienced and dedicated IT professional with over 7 years of experience in system and‬
‭network engineering and PHP development. "‬
‭"Skilled in resolving technical issues, collaborating with clients, and delivering secure‬
‭solutions."‬
‭)‬

‭ 3. Educational Qualifications‬
#
‭doc.add_heading("3. Educational Qualifications:", level=1)‬
‭table = doc.add_table(rows=1, cols=4)‬
‭hdr_cells = table.rows[0].cells‬
‭hdr_cells[0].text = 'Sr.No'‬
‭hdr_cells[1].text = 'Qualification'‬
‭hdr_cells[2].text = 'Year of Passing'‬
‭hdr_cells[3].text = 'Board/University'‬

‭education_data = [‬
‭("01", "M.Tech (Computer Engineering)", "2016", "Nagpur University"),‬
‭("02", "B.E. (Computer Engineering)", "2015", "Nagpur University"),‬
‭("03", "HSC (Math-Science)", "[Year]", "Amravati Board"),‬
‭("04", "SSC (Marathi Medium)", "[Year]", "Amravati Board")‬
‭]‬
‭for sr, qual, year, board in education_data:‬
‭row_cells = table.add_row().cells‬
‭row_cells[0].text = sr‬
‭row_cells[1].text = qual‬
‭row_cells[2].text = year‬
‭row_cells[3].text = board‬

‭ 4. Hobbies and Interest‬


#
‭doc.add_heading("4. Hobbies and Interest:", level=1)‬
‭doc.add_paragraph("Listening to Music")‬
‭doc.add_paragraph("Drawing")‬
‭doc.add_paragraph("Traveling")‬
‭doc.add_paragraph("Internet Surfing")‬

‭ 5. Experience‬
#
‭doc.add_heading("5. Experience:", level=1)‬
‭doc.add_paragraph("System Engineer at Wipro Pvt. Ltd, Pune (2018 to Present)")‬
‭doc.add_paragraph("Project: Spencer Services")‬
‭doc.add_paragraph("Description: Providing software and security solution services")‬
‭doc.add_paragraph("Technologies Used: Software, Network and Proxy Tools")‬

‭ oc.add_paragraph("Junior PHP Developer at Probuz Technology Pvt. Ltd, Nagpur (Jul 2016 to‬
d
‭Jul 2017)")‬
‭doc.add_paragraph("Project: Value Added Event Services")‬
‭doc.add_paragraph("URL: http://valueaddedevents.com/")‬
‭doc.add_paragraph("Description: Event Management project with features like event details,‬
‭notifications, event calendar, gallery.")‬
‭doc.add_paragraph("Technologies Used: JS, CSS, JQuery, PHP, MySQL, SQL Server, HTML")‬

‭ 6. Training & Certification‬


#
‭doc.add_heading("6. Training & Certification:", level=1)‬
‭doc.add_paragraph("Web & Mobile App Development certificate from Techno Base Solution,‬
‭Nagpur")‬
‭doc.add_paragraph("Certificate course in Accounting (Grade A)")‬
‭doc.add_paragraph("ITzen (software course)")‬
‭doc.add_paragraph("National level project competition certificate by SRPCE Nagpur")‬

‭ 7. Personal Information‬
#
‭doc.add_heading("7. Personal Information:", level=1)‬
‭doc.add_paragraph("Name: Dhanshri S. Ikhar")‬
‭doc.add_paragraph("Gender: Female")‬
‭doc.add_paragraph("Marital Status: Single")‬
‭doc.add_paragraph("Languages Known: Marathi, Hindi, English")‬
‭doc.add_paragraph("Nationality: Indian")‬
‭doc.add_paragraph("Postal Address: Nagpur, MH, 441122")‬

‭ Declaration‬
#
‭doc.add_paragraph("Date: 01/04/2025")‬
‭doc.add_paragraph("Place: Nagpur")‬
‭ oc.add_paragraph("Yours Faithfully,")‬
d
‭doc.add_paragraph("Dhanshri S. Ikhar")‬

‭ Save document‬
#
‭output_docx_path = "/mnt/data/Dhanshri_Ikhar_Vitthal_Style_Resume.docx"‬
‭doc.save(output_docx_path)‬

‭output_docx_path‬

You might also like