Python 栈操作示例: 进栈与出栈
下面是一个简单的 Python 进出栈示例:
stack = [] # 创建一个空栈
# 进栈操作
stack.append('a')
stack.append('b')
stack.append('c')
print('当前栈: ', stack)
# 出栈操作
x = stack.pop()
print('出栈元素: ', x)
print('当前栈: ', stack)
运行结果:
当前栈: ['a', 'b', 'c']
出栈元素: c
当前栈: ['a', 'b']
原文地址: https://www.cveoy.top/t/topic/lL4h 著作权归作者所有。请勿转载和采集!