上一页 1 2 3 4 5 6 7 8 9 10 ··· 20 下一页
摘要: 生成器 在 Python 中,使用了 yield 的函数被称为生成器(generator)。 跟普通函数不同的是,生成器是一个返回迭代器的函数,只能用于迭代操作,更简单点理解生成器就是一个迭代器。 在调用生成器运行的过程中,每次遇到 yield 时函数会暂停并保存当前所有的运行信息,返回 yield 阅读全文
posted @ 2021-01-08 23:35 腹肌猿 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 装的是python3.9的解释器, 在写python迭代器时报错TypeError: iter() returned non-iterator of type 'int' class Gen(object): def __iter__(self): self.a=10 return self.a # 阅读全文
posted @ 2021-01-08 23:06 腹肌猿 阅读(886) 评论(0) 推荐(0) 编辑
摘要: 之前在程序中用sys.exit(0),无法立即退出当前程序,why? 原来是try进行了异常捕获,当前函数停止了,但是之后的继续运行: import os,sysimport timenum=0def fun(): global num num +=1 time.sleep(0.2) if num 阅读全文
posted @ 2021-01-07 19:50 腹肌猿 阅读(302) 评论(0) 推荐(0) 编辑
摘要: 在python中,有yield的函数是生成器函数 def gen(para): while True: yield para print(next(gen(8))) print(next(gen(88))) print(next(gen(888))) print(" ") def gen2(): l 阅读全文
posted @ 2021-01-01 23:26 腹肌猿 阅读(126) 评论(0) 推荐(0) 编辑
摘要: 参考博客:https://blog.csdn.net/xujin0/article/details/83420633 总结: 0. {% include "xxx"%}是将其他html代码段加入到当前html中,当前html中可能会有好多{% include "xxx"%}, include这部分不 阅读全文
posted @ 2020-12-30 15:45 腹肌猿 阅读(363) 评论(0) 推荐(0) 编辑
摘要: 在django中需要URL 的地方,对于不同层级,Django 提供不同的工具用于URL 反查: 1、在模板中:使用url 模板标签。 2、在Python 代码中:使用 django.core.urlresolvers.reverse() 函数。 3、在更高层的与处理Django 模型实例相关的代码 阅读全文
posted @ 2020-12-30 11:20 腹肌猿 阅读(190) 评论(0) 推荐(0) 编辑
摘要: 第一种 (function checkCookie(){ console.log("hello world!!!!!"); }()) 第二种 (function checkCookie(){ console.log("hello world!!!!!"); })() 第三种 !function ch 阅读全文
posted @ 2020-12-29 14:16 腹肌猿 阅读(1359) 评论(0) 推荐(0) 编辑
摘要: Linux设置自动登录如下: 在CentOS下,我们每次需要用root账号手动登陆,但是再做automation时,我们需要免登录,直接进入OS。 很简单,按图中所示修改配置文件保存并重启,则会免登录. gedit /etc/gdm/custom.conf 在[daemon]下添加: Automat 阅读全文
posted @ 2020-12-28 14:16 腹肌猿 阅读(187) 评论(0) 推荐(0) 编辑
摘要: PEP 8 -- Python 代码样式指南 https://www.python.org/dev/peps/pep-0008/ 阅读全文
posted @ 2020-12-26 14:00 腹肌猿 阅读(85) 评论(0) 推荐(0) 编辑
摘要: 下载安装mingw-get-setup.exe: https://osdn.net/projects/mingw/releases/ 或直接下载:https://osdn.net/projects/mingw/downloads/68260/mingw-get-setup.exe/ https:// 阅读全文
posted @ 2020-12-11 20:52 腹肌猿 阅读(213) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 20 下一页