I've found that if I define a list
Sage: list1 = [1,2,3]
and then try to remove an element
Sage: list2 = list1.remove(2)
but then
Sage: print(list2)
returns
None
1 | initial version |
I've found that if I define a list
Sage: list1 = [1,2,3]
and then try to remove an element
Sage: list2 = list1.remove(2)
but then
Sage: print(list2)
returns
None