Create a reverse method for a python list from scratch. def reverse_fun(data_list): length = len(data_list) s = length new_list = [None] ...
確定! 回上一頁