Python Mission 5: if else

백은진·2020년 8월 29일
0

TIL (Today I Learned)

목록 보기
63/106
post-custom-banner

(총 6개의 포스트로 이어지는 글입니다.)

🙋‍ Mission 🙆‍

  1. 파이썬에서 가변객체와 불변객체는 무엇이며, 어떠한 자료형이 있는지 공부한다.
  2. BTS혹은 레드벨벳의 멤버정보를 딕셔너리로 구현해주세요.
  3. 스트링, 리스트, 딕셔너리를 반복문으로 돌면서 인자를 출력하는 함수를 작성해보세요.
  4. for in 반복문을 작성해보고, break, continue의 쓰임새도 알아보세요.
  5. if와 else를 이용해 조건문을 작성해보세요.
  6. list method 중 append, pop, sort 을 활용한 함수를 작성해보세요.

5. if와 else를 이용해 조건문을 작성해보세요.

입력

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!!
profile
💡 Software Engineer - F.E
post-custom-banner

0개의 댓글