Please organize the folder structure.
.
└── user-name
└── year_month
└── week0X
└── MMDD_QuestionNumber
Write a function and a main function, with a blank line between them.
# main.py
def main():
print('This is Main Function')
if __name__ == '__main__':
main()
# 실행 결과
# $ python main.py
# $ This is Main Function
make a commit on the develop branch
feat: Solve [QuestionNumber]
- Title: Use the same text as the commit message
feat: Solve [QuestionNumber]
- Description: Explain the code in English (see the example for reference)
- Create a pull request from the develop branch to the develop branch
Be sure to sync before modifying local files.
Write a brief summary of what you’ve newly learned