- 뭐야 슬라이싱하면 되잖아 하고 자신있게 풀었는데
url = "http://sharebook.kr"
print(url[-2:])
# 출력화면
# kr
- 출력도 맞게 잘 되었는데 아무래도 출제 의도를 파악하지 못한 것 같다
- 정답을 보니 출제자는 split() 함수를 사용하게 하려고 문제를 낸 것 같다
url = "http://sharebook.kr"
url_split = url.split('.')
print(url_split[-1])
url = "http://sharebook.kr"
url_split = url.split('.')
print(url_split)
# 출력화면
# ['http://sharebook', 'kr']
- 아하! split() 함수를 쓰면 지정한 문자열을 기준으로 쪼개져서 리스트가 되는구나!
- 근데 왜 -1이지? 인덱스 1로 해도 될 것 같은데,,,
url = 'https://guco.tistory.com'
url_split = url.split('.')
print(url_split[1])
# 출력화면
# tistory
- 아하! 온점(.)이 2개 이상일 때는 인덱스 1이 도메인을 가리키지 않는구나! (자문자답 ㅎㅎ)
url = 'https://guco.tistory.com'
url_split = url.split('.')
print(url_split[-1])
# 출력화면
# com
- 이게 맞지 ㅇㅋㅇㅋ~