myList = [] # extend method add multiple items in a list mylist.extend((12, 5, 70, "this is example")) print(mylist)