책 내용에 대한 무단배포 방지를 위해 최소한으로 정리
solarsys = ['태양', '수성', '금성', '지구', '화성', '목성', '토성', '천왕성', '해왕성', '지구']
planet = '지구'
pos = solarsys.index(planet)
print(f'{planet}은 태양계에서 {pos}번째에 위치하고 있습니다.')
pos = solarsys.index(planet, 5)
print(f'{planet}은 태양계에서 {pos}번째에 위치하고 있습니다.')
Comments