paizaの問題の入力データを読み込む書き方がモヤモヤしていたがいい書き方があったのでメモっておく。
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
Go to list of users who liked
More than 5 years have passed since last update.
paizaの問題の入力データを読み込む書き方がモヤモヤしていたがいい書き方があったのでメモっておく。
3
1 2 3
4 5 6
7 8 9
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
Register as a new user and use Qiita more conveniently
Go to list of users who liked