The writing method to read the input data of the problem of paiza was unpleasant, but there was a good writing method, so make a note of it.
input.txt
3
1 2 3
4 5 6
7 8 9
main.py
n = int(raw_input())
for i in range(n):
a,b,c = map(int, raw_input().split())
f(a,b,c)
def f(a,b,c):
pass
Recommended Posts