Advertisement
misingnoglic

Untitled

Mar 23rd, 2013
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.24 KB | None | 0 0
  1. class Queue():
  2.  
  3.     def __init__(self):
  4.         self.line = []
  5.  
  6.     def insert(self, obj):
  7.         self.line+=[obj]
  8.  
  9.     def remove(self):
  10.         if self.line == []:
  11.             raise ValueError()
  12.  
  13.         else: (self.line).pop(0)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement