摘要: shoppingList = ['apple','banana','lemon','juice','jam']print('my shopping list is',shoppingList)for item in shoppingList: print(item)print("I have",l... 阅读全文
posted @ 2015-04-22 16:42 Kerita 阅读(147) 评论(0) 推荐(0) 编辑
摘要: ab = {'001':'李晓诗','002':'胡泽坤','003':'陈春荣','004':'杨松川'}print('003 is %s' % ab['003'])for number,name in ab.items(): print('%s is %s' % (number,name))... 阅读全文
posted @ 2015-04-22 16:41 Kerita 阅读(183) 评论(0) 推荐(0) 编辑
摘要: shoppingList = ['apple','banana','cat','dog','duck']#Indexing and 'subscription operation'print('The first item is',shoppingList[0])print('The second ... 阅读全文
posted @ 2015-04-22 16:40 Kerita 阅读(174) 评论(0) 推荐(0) 编辑
摘要: zoo = ('大象','老虎','狮子','北极熊')print('The animal number of the is ', len(zoo))print('The animal of the zoo are ',zoo)new_zoo = ('孔雀','鳄鱼',zoo)print('The ... 阅读全文
posted @ 2015-04-22 16:39 Kerita 阅读(129) 评论(0) 推荐(0) 编辑
摘要: zoo = ('大象','老虎','狮子','北极熊')print('The animal number of the is ', len(zoo))print('The animal of the zoo are ',zoo)new_zoo = ('孔雀','鳄鱼',zoo)print('The ... 阅读全文
posted @ 2015-04-22 16:37 Kerita 阅读(119) 评论(0) 推荐(0) 编辑
摘要: print('The simple assignment')shoppingList = ['chicken','mango','apple','banana']myList = shoppingListprint('Before any action')print('The shopping li... 阅读全文
posted @ 2015-04-22 16:34 Kerita 阅读(768) 评论(0) 推荐(0) 编辑
摘要: 函数可以携带具有默认值的参数。但是具有默认值的参数必须放在函数的最后面。如果没有放在函数的最后面,也就是说放在函数参数位置的开头或者中间位置的话,就会引起错误。同时在调用函数时,可以指定参数名称,这样就可以不用按照原来定义函数时参数的位置给参数赋值。1 def say(a,b=2,c=13):2 ... 阅读全文
posted @ 2015-04-22 16:29 Kerita 阅读(136) 评论(0) 推荐(0) 编辑
摘要: 今天从《简明Python教程》开始学习Python。1、昨晚睡觉前在知乎提了一个问题,早上没有人回答;2、鉴于昨晚提问时邀请的六个人都没有回答,而且已经达到知乎问答邀请人数上限,所以手动私信邀请一些在Python话题下的活跃用户。3、中午回到宿舍有人回答了,所以跟着他的思路展开,然后又谷歌了一下,最... 阅读全文
posted @ 2015-04-22 16:24 Kerita 阅读(103) 评论(0) 推荐(0) 编辑
摘要: onreadystatechange,readyState,status...怎么一会state一会是status都晕乎了。可以简单的理解为state代表一个整体的状态。而status是这个大的state下面具体的小的状态。比如,水的state 1.可饮用 2.不可饮用 如果是可饮用, 那么对应的 ... 阅读全文
posted @ 2015-04-13 21:47 Kerita 阅读(426) 评论(0) 推荐(0) 编辑
摘要: Linux系统有很多种,对于一个没有接触过Linux的小白来说,Ubuntu是最容易搭建,所以此处搭建一个Ubuntu系统。1.到Ubuntu官网下载一个镜像文件 --http://www.ubuntu.org.cn/index_kylin这里下载的是Ubuntu麒麟系统,为中国用户定制的Ubunt... 阅读全文
posted @ 2015-04-05 16:10 Kerita 阅读(1632) 评论(0) 推荐(0) 编辑