Inflearn Community Q&A
K 번째 수 코드 질문입니다..
Written on
·
163
0
import sys
sys.stdin=open("TextFile1.txt", "rt")
T=int(input())
for t in range (T):
n ,s ,e ,k =map(int, input().split())
a=list(map(int, input().split()))
print(a)
이렇게 똑같이 입력했는데
계속 예외가 발생함
too many values to unpack (expected 4)
이렇게 뜨네요vㅍ
python코테 준비 같이 해요!
Answer 1
0





