python学习
文章平均质量分 62
masaka的树屋
这个作者很懒,什么都没留下…
展开
-
python学习
1. 列表的插入2. 列表的扩充3. strip的使用4. 对于字典的 print 的使用5. 字典的清除 ( clear )6. 对字典深复制与浅复制的区别7. 字典中函数的使用原创 2016-09-07 22:37:36 · 168 阅读 · 0 评论 -
codewars_DAY 1
Q1:The goal of this exercise is to convert a string to a new string where each character in the new string is ‘(’ if that character appears only once in the original string, or ‘)’ if that character a原创 2016-09-18 13:21:51 · 537 阅读 · 0 评论 -
python二维数组
在创建二维数组时,若直接采用: >>> arr = [[]]*4则此时得到的称为浅拷贝,创建了一个空列表,之后得到4个指向空列表的引用,所以会出现如下情况 >>> arr[0].append(1) >>> arr [[1], [1], [1], [1]]因此如果要创建二维数组时,应该采用如下形式: >>> lists = [[] for i in range(3原创 2016-09-20 13:12:56 · 553 阅读 · 0 评论 -
codewars_DAY 2
Q1 The observed PIN:Alright, detective, one of our colleagues successfully observed our target person, Robby the robber. We followed him to a secret warehouse, where we assume to find all the stolen s原创 2016-09-19 23:33:48 · 795 阅读 · 0 评论