D:\Baldwin\AA-School\PyProg>python Lists02.py
Create two lists
Print listA
[3.14, 59, 'A string', 1024]
Print listB
[2, 4, 6, 16]
Concatenate the lists
Print concatenated list
[3.14, 59, 'A string', 1024, 2, 4, 6, 16]

D:\Baldwin\AA-School\PyProg>

Figure 10