1# Python code to demonstrate the working of
2# zip_longest()
3
4
5import itertools
6
7# using zip_longest() to combine two iterables.
8print ("The combined values of iterables is : ")
9print (*(itertools.zip_longest('GesoGes', 'ekfrek', fillvalue ='_' )))
10