Example 1: converting a tuple to a list in python #!/usr/bin/python aTuple = (123, 'xyz', 'zara', 'abc'); aList = list(aTuple) print "List elements : " ...
確定! 回上一頁