#通过管道传递 cat somefile.txt |python somescriot.py |sort import sys text = sys.stdin.read() #标准输入流 words = text.split() print words #用户互动 raw_input() x = ...
分类:
其他好文 时间:
2020-09-04 17:10:31
阅读次数:
52
题目 Description Little Leticija is preparing for a programming exam. Even though she has solved a lot of tasks, there’s one still left unsolved, so she ...
分类:
其他好文 时间:
2020-08-31 13:30:01
阅读次数:
65
题意描述 同样没有链接...。 Problem 2: Lock Her Up [Jan Kuipers, 2003] Bessie has been bad again and Farmer John must punish her by locking her up for a while. On ...
分类:
其他好文 时间:
2020-08-02 23:35:51
阅读次数:
104
前言 参数化是自动化测试里面必须掌握的一个知识点,用过unittest框架的小伙伴都知道使用ddt来实现测试用例的参数化。 pytest测试用例里面对应的参数可以用parametrize实现,随着用例的增多,我们的需求也会越来越多,那么如何在fixture中使用参数呢? fixture源码 先看下f ...
分类:
其他好文 时间:
2020-08-02 12:47:24
阅读次数:
102
[GKCTF2020]cve版签到 题目提示 cve-2020-7066 Hint: Flag in localhost Tips: Host must be end with '123' You just view *.ctfhub.com 题目原型 #79329 get_headers() si ...
分类:
Web程序 时间:
2020-08-01 21:18:34
阅读次数:
154
一、线程queue 1,定义: queue队列 :使用 import queue,用法与进程 Queue一样。 queue is especially useful in threaded programming when information must be exchanged safely b ...
分类:
编程语言 时间:
2020-07-29 15:38:46
阅读次数:
79
Oracle-APEX组件失效问题 1. 问题现象 在Oracle11.2.0.4版本中发现APEX组件失效 set lines 168 pages 99 col comp_name for a32 select comp_name, version, status, schema from dba ...
分类:
数据库 时间:
2020-07-27 15:42:28
阅读次数:
93
笛卡尔坐标转换为极坐标。 cartToPolar(...) cartToPolar(x, y[, magnitude[, angle[, angleInDegrees]]]) -> magnitude, angle . @brief Calculates the magnitude and angl ...
分类:
其他好文 时间:
2020-07-23 23:08:23
阅读次数:
189
selenium webdriver源码结构 Python版的源码结构,只看webdriver相关 selenium-master\py\selenium\webdriver\remote 下的文件 |-- command.py 命令相关 |-- errorhandler.py 错误处理 |-- f ...
分类:
Web程序 时间:
2020-07-23 22:41:04
阅读次数:
193
在转换的字符串中,存在null时,就会出现NameError: name ‘null’ is not defined这个错误。 解决办法:使用replace方法将null替换掉 注意:replace argument 2 must be str replace的两个参数都必须为字符串 str.rep ...
分类:
其他好文 时间:
2020-07-21 13:58:35
阅读次数:
67