유저 앱 담당 팀원이 작성한 코드를 봤다.
부끄럽지만, 내가 처음 보는 방식이었다.
얼른 내 것으로 만들어야겠다.
점점 공부를 할수록 기본기가 중요하다는 것을 느낀다.
파이썬 공부에 좀 더 투자를 해야겠다.
password = '1q2w3e4r'
if not any(each.isdigit() for each in password):
print('no digit in password')
else:
print('digit in password')
비밀번호에 숫자 포함 여부
를 묻는 부분만 간단히 수정하였다.
any()는 파이썬의 built-in 함수다. (내장함수)
-Check if any of the items in a list are True
비밀번호에 숫자가 하나라도 없다면 any 함수는 False
를 리턴한다.