SWEA 1926. 간단한 369게임 파이썬

Seomingi·2022년 9월 17일
0
n = int(input())
clap = ['3','6','9']

for i in range(1,n+1):
  count =  0
  for k in str(i):
    if k in clap:
      count += 1
  if count > 0:
    print('{}'.format('-' * count), end=' ')
  else:
    print('{}'.format(i), end=' ')

  
  
profile
One thing after another

0개의 댓글