Advertisement
Roman_Sarnov

Untitled

Aug 28th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. def loll(unprintedd,completed):
  2. while unprintedd:
  3. corrent = unprintedd.pop()
  4. print('Printing model: ' + corrent)
  5. completed.appent(corrent)
  6.  
  7. def show(completed):
  8. print('Gotovo')
  9. for comp in completed:
  10. print(comp)
  11. unprintedd = ['lol', 'kek', 'cheb']
  12. completed = []
  13. loll = (unprintedd, completed)
  14. show(completed)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement