Created
May 11, 2021 13:13
-
-
Save eriky/c184883518e0195b417c0835cd7a64c7 to your computer and use it in GitHub Desktop.
This file contains 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
>>> phone_numbers.items() | |
dict_items([('Jack', '070-02222748'), ('Pete', '010-2488634'), ('Eric', '06-10101010')]) | |
>>> for name, phonenr in phone_numbers.items(): | |
... print(name, ":", phonenr) | |
... | |
Jack : 070-02222748 | |
Pete : 010-2488634 | |
Eric : 06-10101010 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment