6 lines
190 B
Text
6 lines
190 B
Text
list = [1,2,3,"four","five"]
|
|
list2 = list
|
|
list = []
|
|
See list # print the first list - no items to print
|
|
See "********" + nl
|
|
See list2 # print the second list - contains 5 items
|