16. How are lists internally stored ? How are 2D lists internally stored ?
16. How are lists internally stored ? How are 2D lists internally stored ? Read More »
NumLst = [2, 5, 1, 7, 3, 6 ,8, 9] SqlLst = NumLst*2 The above code will not work as desired. It will concatenate two NumLst and contain [2, 5, 1, 7, 3, 6 ,8, 9, 2, 5, 1, 7, 3, 6 ,8, 9] To achieve the purpose we can do NumLst = [2, 5,