Reverse the following list using for loop. list1 = [10, 20, 30, 40, 50]. In [41]:. list1 = [10, 20, 30, 40, 50] a = len(list1) list2 = [] for i in range(a-1 ...
確定! 回上一頁