-
-
Save chintu4/aa3ce022c1ad1b3f888bd0d951493b5b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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