[dywang@deyu zzz]$ cat list7.py #!/usr/bin/python3 # coding: utf-8 listx = [ 'a', 'b', 'c' ] listx *= 2 print("listx =", listx)
[dywang@deyu zzz]$ ./list7.py listx = ['a', 'b', 'c', 'a', 'b', 'c']