Untitled
unknown
plain_text
a month ago
511 B
0
Indexable
Never
# Define your resume details name = "Sanjay" location = "Chennai" contact_number = "9176176495" email = "rsanjayprabha@gmail.com" education = "Bachelor's in Mechanical Engineering" college = "Alagappa Chettiar Government College of Engineering and Technology" graduation_year = 2023 # Create the resume content resume = f""" RESUME Name: {name} Location: {location} Contact Number: {contact_number} Email: {email} Education: - {education}, {graduation_year} {college} """ # Print the resume print(resume)
Leave a Comment