Created
September 10, 2015 23:20
-
-
Save heyalexej/835ffa4f0826110bdb3d to your computer and use it in GitHub Desktop.
answer to https://redd.it/3kgk75
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
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
i = ['headline one', | |
'headline two', | |
'headline three'] | |
j = ['first line one', | |
'first line two', | |
'first line three'] | |
k = ['second line one', | |
'second line two', | |
'second line three'] | |
for x in i: | |
for y in j: | |
for z in k: | |
print x | |
print y | |
print z | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment