티스토리 뷰

#!/usr/bin/python

aList = [123, 'xyz', 'zara', 'abc', 'xyz'];

aList.append("0101")
aList.append("0202");
print "List : ", aList
댓글