摘要:
shoppingList = ['apple','banana','lemon','juice','jam']print('my shopping list is',shoppingList)for item in shoppingList: print(item)print("I have",l... 阅读全文
摘要:
ab = {'001':'李晓诗','002':'胡泽坤','003':'陈春荣','004':'杨松川'}print('003 is %s' % ab['003'])for number,name in ab.items(): print('%s is %s' % (number,name))... 阅读全文
摘要:
shoppingList = ['apple','banana','cat','dog','duck']#Indexing and 'subscription operation'print('The first item is',shoppingList[0])print('The second ... 阅读全文
摘要:
zoo = ('大象','老虎','狮子','北极熊')print('The animal number of the is ', len(zoo))print('The animal of the zoo are ',zoo)new_zoo = ('孔雀','鳄鱼',zoo)print('The ... 阅读全文
摘要:
zoo = ('大象','老虎','狮子','北极熊')print('The animal number of the is ', len(zoo))print('The animal of the zoo are ',zoo)new_zoo = ('孔雀','鳄鱼',zoo)print('The ... 阅读全文
摘要:
print('The simple assignment')shoppingList = ['chicken','mango','apple','banana']myList = shoppingListprint('Before any action')print('The shopping li... 阅读全文
摘要:
函数可以携带具有默认值的参数。但是具有默认值的参数必须放在函数的最后面。如果没有放在函数的最后面,也就是说放在函数参数位置的开头或者中间位置的话,就会引起错误。同时在调用函数时,可以指定参数名称,这样就可以不用按照原来定义函数时参数的位置给参数赋值。1 def say(a,b=2,c=13):2 ... 阅读全文
摘要:
今天从《简明Python教程》开始学习Python。1、昨晚睡觉前在知乎提了一个问题,早上没有人回答;2、鉴于昨晚提问时邀请的六个人都没有回答,而且已经达到知乎问答邀请人数上限,所以手动私信邀请一些在Python话题下的活跃用户。3、中午回到宿舍有人回答了,所以跟着他的思路展开,然后又谷歌了一下,最... 阅读全文