摘要:
开发工具 pycharm python django mysql jquery bootstrap linux nginx 表单设计: 注册models 数据库配置: DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', ' 阅读全文
摘要:
manage.py index.html login.html 阅读全文
摘要:
1.反射:hasattr,getattr,setattr,delattr 阅读全文
摘要:
1.初识面向对象class Person: #定义一个人类 role = 'person' #人的角色属性都是人 def __init__(self,name): self.name = name # 每一个角色都有自己的昵称; def walk(self): #人都可以走路,也就是有一个走路方法 阅读全文
摘要:
正则表达式 元字符量词(?) 元字符 : . \w \d \s \W \D \S \n \t \b () | [] [^] ^ $ 量词 : * + ? {n} ,{n,} ,{n,m} re模块怎么调用re模块 查找 : findall search match finditer 分割和替换 :s 阅读全文
摘要:
递归函数:自己调用自己import syssys.setrecursionlimit(10000)def func1(): print(666) func1()func1()默认最大递归深度998import syssys.setrecursionlimit(10000)count=0def fun 阅读全文
摘要:
02,内置函数 input() 用户交互。 len() 可迭代对象的长度。 sum() 求和。 open() 打开文件。 print() 打印结果。 id() 查看内存地址。 forzenset() 冻结。 int() range() 自定制一个数字范围列表。 str() dict() dir() 阅读全文
摘要:
# 02,迭代器# 可迭代对象:内部含有__iter__# 迭代器:可迭代对象.__iter__()# 迭代器:内部含有__iter__且__next__# 判断 __iter__ 在不在dir(对象中)# isinstance()# 节省内存。# 惰性机制。# 单向不可逆。# for循环的机制:# 阅读全文