python

25372 성택이의 은밀한 비밀번호

hauni 2024. 9. 9. 15:26

코드

n = int(input())
for _ in range(n):
    password = len(input())
    if 6 <= password <= 9:
        print("yes")
    else:
        print("no")
저작자표시 비영리 변경금지 (새창열림)