Subscribe for more
#howto #python #pythonprogramming #pythontutorial #dictionary #iterate #loop #tutorial #1minutevideo #60secondsvideo #fasttutorial #beginners #coding #developer
Full Code Snippet
Example 1:
--------------------------
dict = {'a':1, 'b':2, 'c':3}
for x,y in dict.items():
print("{}:{}".format(x,y))