6. 从尾到头打印链表 ( reversePrint) 1. python class Solution: def reversePrint(self, head: ListNode) -> List[int]: stack = [] while head