2016年5月17日

Python——杂记

摘要: python 最近出错总结: 1.而for..in ..中不要用else if x in y: print else: print2.def fibs(num): ... result = [0,1] ... for i in range(num-2): ... result.append(resu 阅读全文

posted @ 2016-05-17 16:09 zhuzhu2016 阅读(224) 评论(0) 推荐(0) 编辑

Python——列表的操作

摘要: 列表的操作:详细+易出错假设有两个列表: list1 = [1,2,3] list2 = ['a','b','c']列表的操作: 1.list.append() append只接受一个参数 append只能在列表的尾部添加元素,不能选择位置添加元素。 以下操作可以看出 >>> list1 = [1, 阅读全文

posted @ 2016-05-17 16:06 zhuzhu2016 阅读(161) 评论(0) 推荐(0) 编辑

2016.5.16——leetcode:Rotate Array,Factorial Trailing Zeroe

摘要: Rotate Array 本题目收获: 题目: Rotate an array of n elements to the right by k steps. For example, with n = 7 and k = 3, the array [1,2,3,4,5,6,7] is rotated 阅读全文

posted @ 2016-05-17 09:32 zhuzhu2016 阅读(211) 评论(0) 推荐(0) 编辑

导航