Code about AI/Python
백준 23572번: 승택이의 은밀한 비밀번호 (Python)
도비(Doby)
2022. 7. 24. 22:57
https://www.acmicpc.net/problem/25372
Solved By:
T = int(input())
arr = ['' for i in range(0, T)]
for i in range(0, T):
arr[i] = input()
for i in range(0, T):
if len(arr[i]) >= 6 and len(arr[i]) <= 9:
print('yes')
else:
print('no')
728x90