list5 =[[10,20,30],'CSE',[40,50,60]]
print("Nested List= ",list5)
Note: Need to be arranged in compiler after copied
OutPut:
Nested List= [[10, 20, 30], 'CSE', [40, 50, 60]]
list5 =[[10,20,30],'CSE',[40,50,60]]
print("Nested List= ",list5)