Python练习:简单停车场(栈)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python练习:简单停车场(栈)相关的知识,希望对你有一定的参考价值。

学习Python的第二天。

感觉Python数组里的append()和remove()就能代替栈Pop()和Push()了。不过为了练习,写一遍非常简单的停车场

#!/usr/bin/env python

#coding UTF-8

class  Stack:
 def __init__(self):pass
 top = -1
 arr = []
 def pop(self,arr):
  self.arr.remove(self.arr[len(self.arr)-1])
 def push(self,go_in):
  self.arr.append(go_in)

parking = Stack()
while(True):
     status=raw_input(‘In , Out or Stop‘)
     if(status==‘In‘):
      car = raw_input(‘You car?‘)
      parking.push(car)
      print ‘%s‘ %parking.arr
     if(status==‘Out‘):

      #print ‘%s is out‘ %parking.arr[len(parking.arr)-1]
      parking.pop(parking.arr)
      print ‘%s‘ %parking.arr
     if(status==‘Stop‘):
      exit()
     


    
	
	

 

以上是关于Python练习:简单停车场(栈)的主要内容,如果未能解决你的问题,请参考以下文章

实战案例!1行Python代码识别车牌号码,轻松写一个停车场管理系统,YYDS

Python练习册 第 0013 题: 用 Python 写一个爬图片的程序,爬 这个链接里的日本妹子图片 :-),(http://tieba.baidu.com/p/2166231880)(代码片段

Python编程之数据结构与算法练习_009

Java使用栈和队列模拟停车场问题

顺序栈和链队列

停车场管理