上一页 1 2 3 4 5 6 7 8 9 10 ··· 31 下一页
摘要: {% for subrow in subdic.content|slice:":5" %} {% endfor %} {% if "{{subdic.content|length}}" > 5 %} {% endif %} 如上,关键在于 循环中,里面的列表外面没有双引号 而if中,列表外面有双引号 阅读全文
posted @ 2017-12-04 23:15 xqnq2007 阅读(4929) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/intval/p/5763929.html sudo apt-get install cron 启动cron sudo service cron start 查看本机上所有cron服务 ls -l /etc/init.d 编辑一个文件: 用户名+cro 阅读全文
posted @ 2017-12-04 18:08 xqnq2007 阅读(4267) 评论(0) 推荐(0) 编辑
摘要: http://www.jb51.net/article/87402.htm 需要注意的是每一个字段后面的值外面没有引号,切记,自己第一次配置时,加了引号,搞了半天 没找到错误,, 在用Python做开发的时候经常会用到数据库或者其他需要动态配置的东西,硬编码在里面每次去改会很麻烦。Python自带有 阅读全文
posted @ 2017-12-04 17:01 xqnq2007 阅读(1892) 评论(0) 推荐(0) 编辑
摘要: 添加一个字段 ALTER TABLE `ai_cate` ADD `enname` VARCHAR(30) NOT NULL AFTER `name`; 更新某个字段 的值 UPDATE `ai_subcate` SET `enname` = 'linearregression' WHERE `ai 阅读全文
posted @ 2017-12-03 16:27 xqnq2007 阅读(107) 评论(0) 推荐(0) 编辑
摘要: http://www.jb51.net/article/92673.htm 阅读全文
posted @ 2017-12-01 19:11 xqnq2007 阅读(290) 评论(0) 推荐(0) 编辑
摘要: 应该是由于鼠标焦点没有定位到相应元素 driver.find_element_by_xpath('//input[@type="password"]').click() driver.find_element_by_xpath('//input[@type="password"]').clear() 阅读全文
posted @ 2017-12-01 14:55 xqnq2007 阅读(2011) 评论(0) 推荐(0) 编辑
摘要: 一 获取当前平台 platform import platform print(platform.platform()) 阅读全文
posted @ 2017-11-30 17:56 xqnq2007 阅读(234) 评论(0) 推荐(0) 编辑
摘要: 1 time.sleep import time for i in range(5): print(i) time.sleep(10) 2 用shed 其中func中放要执行的函数,用schedule.enter加入要执行的函数,里面的第一个参数是延迟执行的时间,用sched.scheduler进行 阅读全文
posted @ 2017-11-30 17:34 xqnq2007 阅读(26420) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/zhzh213/article/details/53842790 有个内部工具叫做2to3.py位置在Python3/tool/script文件夹。 首先CD到这个文件夹,然后 [python] view plain copy print? py 2to3. 阅读全文
posted @ 2017-11-30 17:34 xqnq2007 阅读(151) 评论(0) 推荐(0) 编辑
摘要: 在关闭driver时,如果用close,而不是用quit,会出现如下错误: Exception ignored in: <bound method Popen.__del__ of <subprocess.Popen object at 0x0000027A6CAD1278>>Traceback ( 阅读全文
posted @ 2017-11-30 15:42 xqnq2007 阅读(1871) 评论(0) 推荐(1) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 31 下一页