본문 바로가기
Python/왕초보를 위한 파이썬

Python 실습_Capitalize Even Items

by 가므자 2012. 4. 10.
Capitalize Even Items
Create a function that when passed a list of strings, changes all even indexed strings to be upper case while odd ones remain the same.

 

Results
Call Expected Received Correct
capitalize_even(['Apple','Banana','Chiku','Durian','Elderberry','Fig','Grape','Honeydew']) [APPLE, Banana, CHIKU, Durian, ELDERBERRY, Fig, GRAPE, Honeydew] ['APPLE', 'Banana', 'CHIKU', 'Durian', 'ELDERBERRY', 'Fig', 'GRAPE', 'Honeydew'] true
 

'Python > 왕초보를 위한 파이썬' 카테고리의 다른 글

Python 실습_Character Replacement  (0) 2012.04.10
Python 실습_Alphabet count  (0) 2012.04.10
Python 실습_Range Step  (0) 2012.04.10
7.4. 개체 속의 개체  (0) 2012.04.06
7.3. 대물림  (0) 2012.04.06

댓글