14. Write Python statements to create the following lists:
A list containing 2 strings , 2 integers, a nested list and name it as Mixed.
Answers
Answered by
0
Explanation:
Mixed = ['hi' , 'hello' , 4 , 6 , [1, 2,3] ]
by default a list in python can take mixed data types at once so you can add any data in place of the data that i have entered above.
Similar questions