[ create a new paste ] login | about

Link: http://codepad.org/9S5TQ1HG    [ raw code | output | fork ]

Python, pasted on Nov 29:
1
2
3
4
5
6
7
8
9
10
11
12
line = ''
values = []

if True:
            if "=" not in line:
                print("Test1")
                values.append(line)
            else:
                print("Test2")
                line = line.split("=")
                result[line[0]] = line[1]
            print("Test3")


Output:
1
2
Test1
Test3


Create a new paste based on this one


Comments: