(총 6개의 포스트로 이어지는 글입니다.)
🙋 Mission 🙆
- 파이썬에서 가변객체와 불변객체는 무엇이며, 어떠한 자료형이 있는지 공부한다.
- BTS혹은 레드벨벳의 멤버정보를 딕셔너리로 구현해주세요.
- 스트링, 리스트, 딕셔너리를 반복문으로 돌면서 인자를 출력하는 함수를 작성해보세요.
- for in 반복문을 작성해보고, break, continue의 쓰임새도 알아보세요.
- if와 else를 이용해 조건문을 작성해보세요.
- list method 중 append, pop, sort 을 활용한 함수를 작성해보세요.
입력
place = ['bedroom', 'toilet', 'garden', 'balcony']
def where_is_my_dog(where):
if where == 'bedroom' or where == 'balcony':
print 'My dog is taking a rest.'
elif where == 'toilet' or where == 'garden':
print 'My dog is pooping.'
else:
print 'My dog is out of the house!!'
where_is_my_dog('bedroom')
where_is_my_dog('toilet')
where_is_my_dog('somewhere..?')
출력
My dog is taking a rest.
My dog is pooping.
My dog is out of the house!!