문자열로 이루어진 리스트, 딕셔너리에서 특정 문자(열)가 시작 혹은 끝 위치에 위치하는지 확인
startswith
- 시작 위치
endswith
- 종료 위치
활용법
# 날짜 리스트
dates = [
'2020-01',
'2020-02',
'2021-01',
'2021-02',
'2022-01',
'2022-02'
]
# 2020년만 출력하는 반복문
for date in dates:
if date.startswith('2020'):
print(date)
else:
continue
'2020'으로 시작하는 문자가 확인되면 출력하는 샘플코드 입니다.
'Programming > Python' 카테고리의 다른 글
set.update() (0) | 2024.06.30 |
---|---|
any/all(), enumerate() (0) | 2024.06.23 |