Python Taskbook Level 3.1
Using include, create the following list:
[1, 2, 3, 4, 5, 6]
Two lists are given:
lst1 = [1, 2, 3]
lst2 = [4, 5, 6]
Combine these lists into one:
[1, 2, 3, 4, 5, 6]
There is a certain list given, for example, this one:
[1, 2, 3, 4, 5, 6]
Find the sum of the first half of the elements of this list.