Skip to content

Instantly share code, notes, and snippets.

@chintu4
Created January 29, 2023 06:46
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chintu4/aa3ce022c1ad1b3f888bd0d951493b5b to your computer and use it in GitHub Desktop.
Save chintu4/aa3ce022c1ad1b3f888bd0d951493b5b to your computer and use it in GitHub Desktop.
#!/usr/bin/python
a={"1":"apple","2":"gauva"}
items=iter(a)
while True:
try:
item = next(items)
print(*item)
except StopIteration:
break
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment