def tes(i):
_return i+1,i*2

l1 =[]
l2 =[]
for i in range(10):
_l1, l2 ←appendしたい tes()

temp = tes()
l1.append(temp[0])
l2 append(temp[1])
こう書くのが一番いいですか?
もっといい書き方ありますか?