a=['hai','this','is'] b=['mergeing','list','in'] c=['simple','way'] a.extend(b) a.extend(c) print(a)
['hai', 'this', 'is', 'mergeing', 'list', 'in', 'simple', 'way']
Comments :