Skip to content

Instantly share code, notes, and snippets.

@vovanz
Created May 30, 2016 00:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vovanz/e52e8d4f155b1189532bff8a6bdfd0c0 to your computer and use it in GitHub Desktop.
Save vovanz/e52e8d4f155b1189532bff8a6bdfd0c0 to your computer and use it in GitHub Desktop.
testlist = ['1111',
'2222',
'3333',
'4444',
'5555']
while testlist:
item = testlist.pop(0)
print ('Беру элемент', item)
time.sleep(15)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment