Skip to content

Instantly share code, notes, and snippets.

@heyalexej
Created September 10, 2015 23:20
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save heyalexej/835ffa4f0826110bdb3d to your computer and use it in GitHub Desktop.
Save heyalexej/835ffa4f0826110bdb3d to your computer and use it in GitHub Desktop.
#!/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
print x
print y
print z
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment