摘要:
数据结构:列表的元素可变,用[] or list()创建。元祖的元素不可变,用() or tuple()创建。集合的元素不可重复,用{} or set()创建。字典的存放K-V,用dict() or {} 创建。del: 按照索引 删除数据结构元素 or 变量====================... 阅读全文
摘要:
FROM:http://www.zeeronsolutions.com/installing-xampp-on-windows-7-user-account-control-uac-warning-message/报错:“Important! Because an activated User Ac... 阅读全文
摘要:
FROM:http://www.nowcoder.com/books/coding-interviews/4060ac7e3e404ad1a894ef3e17650423实现一个函数,将一个字符串中的空格替换成“%20”。例如,当字符串为We Are Happy.则经过替换之后的字符串为We%20A... 阅读全文