--------------------------------------------------------------------------- TypeError Traceback (most recent call last) Input In [2], in <cell line: 3>() 1 a=[1,2,3] 2 # 123 무한 반복하기 ----> 3 b=int(input()) 4 while a: 5 print(a*b) TypeError: int() argument must be a string, a bytes-like object or a number, not 'Future'



풀코드

a=[1,2,3] # 123 무한 반복하기 b=int(input()) while a: print(a*b)






무슨 코드 만들려고 할 때마다 저기서 자꾸 에러나는데


저런류의 에러가나서 중간에 계속 막혀요 ㅠ ㅠ