aboutsummaryrefslogtreecommitdiff
path: root/challenge-045/burkhard-nickels/python/ch-2.py
blob: d9ccc4527079e6d536e898bb7b770a1a207e76d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/python

# print "ch-2.pl (Version 1.0) PWC #42 Task #2: Balanced Brackets\n";
# print "File:", __file__, "\n";

fh = open(__file__);
for line in fh:
	print(line),

fh.close