There is no official way to un-immutable something as it wouldn't be 
immutable then. The only way is to make a new list/Sequence with a copy of 
the elements. The new container is then mutable again, since it is only 
copy:

v_copy = [ x for x in v_immutable ]

If you modify the copy, the original (immutable) Sequence will not  be 
changed.

-- 
To post to this group, send email to sage-support@googlegroups.com
To unsubscribe from this group, send email to 
sage-support+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/sage-support
URL: http://www.sagemath.org

Reply via email to