호그와트

한국의 레전드 출산율을 극복하는 방법

영웅*^%&$ 2023. 1. 12. 17:31
728x90

#Given the following dictionary of nations and their respective population, find the nation with the closest population to South Korea and print the difference in population between the two nations.

population = {
'Korea' : 51000000,
'Russia': 144000000,
'China': 140000000,
'Japan': 126000000,
'England' : 66000000 }

closest_nation = None
min_diff = float('inf')
for nation, pop in population.items():
    if nation != "Korea":
        diff = abs(population['Korea'] - pop)
        if diff < min_diff:
            min_diff = diff
            closest_nation = nation
print(closest_nation, min_diff)

728x90

'호그와트' 카테고리의 다른 글

파이썬 백준 2484 깔끔한 해결  (0) 2023.01.17
흠냐아-  (0) 2023.01.14
아름다워~  (0) 2023.01.11
괄호를 잘 닫으셨나요 ?  (0) 2023.01.10
쉘코드를 만들어볼까요?!  (0) 2023.01.10