上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 25 下一页
摘要: 之前在程序中用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 我的腹肌不见了 阅读(351) 评论(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 我的腹肌不见了 阅读(177) 评论(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 我的腹肌不见了 阅读(399) 评论(0) 推荐(0)
摘要: 在django中需要URL 的地方,对于不同层级,Django 提供不同的工具用于URL 反查: 1、在模板中:使用url 模板标签。 2、在Python 代码中:使用 django.core.urlresolvers.reverse() 函数。 3、在更高层的与处理Django 模型实例相关的代码 阅读全文
posted @ 2020-12-30 11:20 我的腹肌不见了 阅读(227) 评论(0) 推荐(0)
摘要: 第一种 (function checkCookie(){ console.log("hello world!!!!!"); }()) 第二种 (function checkCookie(){ console.log("hello world!!!!!"); })() 第三种 !function ch 阅读全文
posted @ 2020-12-29 14:16 我的腹肌不见了 阅读(1377) 评论(0) 推荐(0)
摘要: Linux设置自动登录如下: 在CentOS下,我们每次需要用root账号手动登陆,但是再做automation时,我们需要免登录,直接进入OS。 很简单,按图中所示修改配置文件保存并重启,则会免登录. gedit /etc/gdm/custom.conf 在[daemon]下添加: Automat 阅读全文
posted @ 2020-12-28 14:16 我的腹肌不见了 阅读(206) 评论(0) 推荐(0)
摘要: PEP 8 -- Python 代码样式指南 https://www.python.org/dev/peps/pep-0008/ 阅读全文
posted @ 2020-12-26 14:00 我的腹肌不见了 阅读(96) 评论(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 我的腹肌不见了 阅读(266) 评论(0) 推荐(0)
摘要: 安装redhat系统 如果过程中出现: Entering emergency mode exit the shell to continue. Type “journalctl” to view system logs. 解决方法: 这时在提示符下输入以下两行命令 cd devls在出现的几列字符中 阅读全文
posted @ 2020-11-27 00:53 我的腹肌不见了 阅读(8073) 评论(0) 推荐(0)
摘要: #!-*-coding:utf8-*- import serial # 导入模块 ####Get avilable port import serial.tools.list_ports port_list = list(serial.tools.list_ports.comports()) pri 阅读全文
posted @ 2020-11-04 17:07 我的腹肌不见了 阅读(744) 评论(0) 推荐(0)
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 25 下一页