Select the statements which are not true: a. list can hold homogeneous content
Select the statements which are not true:
a. List can hold homogeneous
b.
>>>objVar1=[1,2,3]
>>>objVar2=[10,20,30]
>>>objVar1+objVar2 will sum the list1 and list2 values
c. The insert() function is used to insert value in the first. For eg >>>list1.insert(2)
d. The append() is used to append multiple list values into a List.