反向输出一个链表。
ptr = [] for i in range(5): num = int(input('please input a number:')) ptr.append(num) print(ptr) ptr.reverse() print(ptr)