PythonExtra/tests/basics/list_sum.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
59 B
Python
Raw Normal View History

2014-01-03 03:27:08 +01:00
# list addition
a = [1,2,3]
b = [4,5,6]
c = a + b
print(c)