私は Python の初心者で、スペースで区切られた整数の行を読み取らなければならない CodeChef の質問を解決しています。これは私がやっていることです:
def main():
t=int(raw_input()) #reading test-cases
while t!=0:
n, k=raw_input().split() #reading a line of two space separated integers
n, r=int(n), int(r) #converting them into int
list=[]
#reading a line of space separated integers and putting them into a list
list[-1:101]=raw_input().split()
次に、リスト内の各要素を整数に変換します。これを行うためのより良い方法はありますか?Python で遊んで、ヒントやコツを学べるオンライン リソースを提案してください。