Get your own Python server Result Size: 625 x 565
x
 
thislist = ["apple", "banana", "cherry"]
thistuple = ("kiwi", "orange")
thislist.extend(thistuple)
print(thislist) 
['apple', 'banana', 'cherry', 'kiwi', 'orange']