How to delete element from list in Python? -


i new python. have created list

a = [[3,4],[5],[6,7,8]] 

i want delete 3 list. command this?

easy, can try this

del a[0][0] 

Comments

Popular posts from this blog

List<T>().Add problem C# -

Javascript natural sort array/object and maintain index association -