To Practice this Program, you should have a basic knowledge of the following Topics:
Collect Data from the applicant and change it in the specified mentioned format :
Position Applying For(IT Professional/ IT Lead / IT Project Manager) : _____ (Change it in Capital Format)
Name : _____ (Change it in Title Format)
Email : _____ (Change it in Lower Format)
Mobile No. : _____ (Remove Before and After Spaces)
IT Languages Known(C++ / Java / Python) : _____ (Change it in Capitalize Format)
Experience(Fresher/Upto 1 Year/ More than 2Years): ______ (No change)
Work Overtime ? (Yes/No) : _______ (Change in Title and Check user Entry For Yes)
Shift (Day/Night/ Rotational) : _______ (Remove Before and After Spaces)
In the end, print a conclusion from user entry in specified format like following :
Output:
_______(name) is looking a job for ___(Position Applying For) in IT. He/She has done _____(Languages known) and has an experience of ___ Years.
Following are the steps to do :
</p>
<div class="wp-block-codemirror-blocks-code-block code-block">
<pre>name = input("Write your name ? ")
email = input("Write your email ? ")
mobile = input("Write your mobile Number ? ")
address = input("Write your address ? ")
print("Write something about yourself ? ")
about_me = input("")
print("Write your Professional Experience ? ")
professional_experience = input("")
print("Write your Educational Qualifications ? ")
education = input("")
print("What skills do you have ? ")
skills = input("")
father = input("Write your Father's Name ? ")
marital_status = input("State your Marital Status ")
hometown = input("Where is your hometown ? ")
</pre>
</div>
<p></p>
<div class="wp-block-codemirror-blocks-code-block code-block">
<pre>print() # Creating Gap with blank line.
print() # Creating Gap with blank line.
print("# Now Printing/Outputing the C.V")
print()
print("Name: " + name)
print("Email-id: " + email)
print("Mobile Number: " + mobile)
print("Address : " + address)
print()
print("About Me: ")
print(about_me)
print("Professional Experience: ")
print(professional_experience)
print("Educational Qualifications: ")
print(education)
print("Skills: ")
print(skills)
print()
print()
print("Personal Information")
print("Father's Name: " + father)
print("Marital Status: " + marital_status)
print("Hometown: " + hometown)</pre>
</div>
<p>- Accepting User Data (Input Function)
- Title, Lower, Capitalize, Strip (String Methods)
- Print/Output the Data (Input Function)
Posted by Akshay Gupta
