增lis=["a","b","c",5,7,4]lis.append("s")#在列表的末尾追加lis.extend("12334")#迭代增加lis.insert(1,"11")在第二个位置插入11删除lis.pop()#默认删除最后一个字符lis.pop(1)#删除指定字符lis.remove('a')删除指定字符 lis.clear()#清空 del lis[1:3]#内置函数 可…
第五步: 获取联系人信息---day4代码 settings.py """ Django settings for weixin project. Generated by 'django-admin startproject' using Django 2.0.1. For more information on this file, see https://docs.djangoproject.com/en/2.0/topics/settings/ For the ful…