Computer Science, asked by ksss50094p9j8lr, 5 months ago

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 yamanjaikumar
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