Commit 87a906df authored by Dong-hee,Na's avatar Dong-hee,Na

add test for testing recursive print

parent 87957462
......@@ -15,6 +15,10 @@ l = range(7, -1, -2)
print sorted(l)
print l
l = range(5)
l[0] = l
print l
for i in xrange(-10, 10):
l2 = range(5)
l2.insert(i, 99)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment