HOME/Articles/

simple python-example-7 (snippet)

Article Outline

Python example 'python-example-7'

python-example-7

Python example: python-example-7

#!/usr/bin/python
# -*- coding: UTF-8 -*-

a = [1, 2, 3]
b = a[:]
print(b)