Studio KimHippo :D
[Python / Algorithm Challenge ] 1. 첫 번째 알고리즘 챌린지 본문
Python Study/Algorithm Challenge
[Python / Algorithm Challenge ] 1. 첫 번째 알고리즘 챌린지
김작은하마 2019. 7. 8. 00:28
# -*- coing : utf-8 -*-
# NOTE : 이씨인 사람과 김씨인 사람 수 각각 구하기
# NOTE : 이름이 이재영인 사람 수 구하기
# NOTE : 중복되는 이름 제거
names = ['이유덕', '이재영', '권종표', '이재영', '박민호', '강상희',
'이재영', '김지완', '최승혁', '이성연', '박영서', '박민호',
'전경헌', '송정환', '김재성', '이유덕', '전경헌']
lee_cnt = 0
kim_cnt = 0
ljy_cnt = 0
for name in names:
if name[0] == '이':
lee_cnt += 1
if name == '이재영':
ljy_cnt += 1
elif name[0] == '김':
kim_cnt += 1
print('성이 이씨인 사람들 수 입니다. : {} 명'.format(lee_cnt))
print('성이 김씨인 사람들 수 입니다. : {} 명'.format(kim_cnt))
print('이름이 이재영인 사람들 수 입니다. : {} 명'.format(ljy_cnt))
unique_name = set(names)
print(sorted(unique_name))
'Python Study > Algorithm Challenge' 카테고리의 다른 글
[Python / Algorithm Challenge] 6. 선택 정렬(미완) (0) | 2019.07.08 |
---|---|
[Python / Algorithm Challenge] 5. 누가 MVP인가? (0) | 2019.07.08 |
[Python / Algorithm Challenge ] 4. 문자열에서 숫자와 문자 따로 구분 (0) | 2019.07.08 |
[Python / Algorigthm Challenge ] 3. 1차원 평면 내 거리가 가장 짧은 두 점 추출 (0) | 2019.07.08 |
[Python / Algorithm Challenge] 2. 문자열 공백제거 (0) | 2019.07.08 |
Comments