首页 > 代码库 > Learn Python From 'Head First Python' [1] : The List
Learn Python From 'Head First Python' [1] : The List
1.the concept of List
2. how to define a method of myself
3.how to iterator a list
PS:
for Step 2,3. it is related with a key word: ‘def‘. we define a function like below.
def function name:
XXXXX
e.g. list iterator :
1 def print_lol(the_list):2 for each in the_list:3 if isinstance(each,list):4 print_lol(each)5 else:6 print(each)
Learn Python From 'Head First Python' [1] : The List
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。