View difference between Paste ID: GBUGeW91 and ee2HkiTR
SHOW: | | - or go back to the newest paste.
1
x = ['a', 'b']
2
a = ['stop']
3
b = ['go']
4
for i in x:
5-
	print the a list followed by the b list
5+
	print(a)
6
    print(b)