Created
May 5, 2019 16:06
-
-
Save khadkarajesh/d5ec765115823488cd78a0579e0d30fe to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
print("> I wanna be a professional software engineer.") | |
print("I can help you. <") | |
print("> How?") | |
def technical_support(): | |
print("Technical Support Skill.") | |
automate_with_CI() | |
def training_on_git(): | |
print('interview_preparation()') | |
interview_preparation() | |
def software_development_process(): | |
print('open_source_contribution()') | |
open_source_contribution() | |
def training_on_kotlin(): | |
print('blog_writing()') | |
blog_writing() | |
def training_on_android_framework(): | |
print('one_to_one_mentorship()') | |
one_to_one_mentorship() | |
def automate_with_CI(): | |
print('training_on_git()') | |
training_on_git() | |
def portfolio_building(): | |
print('training_on_android_framework()') | |
training_on_android_framework() | |
def interview_preparation(): | |
print('software_development_process()') | |
software_development_process() | |
def one_to_one_mentorship(): | |
data = [] | |
for key in range(0,5): | |
data.append(key) | |
for i in data: | |
print(i) | |
after_three_months() | |
def open_source_contribution(): | |
print('training_on_kotlin()') | |
training_on_kotlin() | |
def blog_writing(): | |
print('portfolio_building()') | |
portfolio_building() | |
def incwell_bootcamp(): | |
for i in range(0,3): | |
print("For three months") | |
technical_support() | |
def after_three_months(): | |
print("Software Engineer") | |
if __name__ == "__main__": | |
incwell_bootcamp() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment