+ 5
What is the output of print list1 + list2, if list1 = [ 'abcd', 786 , 2.23, 'john', 70.2 ] and ist2 = [123, 'john']?
Give me answer of this question
2 ответов
+ 4
It will print concatenated tuples. Output would be ('abcd', 786, 2.23, 'john', 70.200000000000003, 123, 'john').
+ 2
A new list will form containing all values except John only once
List=['abcd',783,2.23,'john',70.2,123 ]