Miscellaneous
Part I: Module
Import a source file created by ourselves but it’s not in the current working directory
append the target working directory into system path
List all local packages
more
Part II: Data structure
When copy a sequence, such as list, tuple, string, integer, etc, use the slicing operation to make a copy. Since copy a sequence is only pointing to a directory where the original sequence is stored. If the original sequence is changed, the copied sequence will also be updated.
more
Last updated