Tag: python

如何在Python中使用Selenium?

我如何设置Selenium来使用Python? 我只想用Python编写/导出脚本,然后运行它们。 有没有什么资源可以教会我如何做到这一点? 我尝试了Googlesearch,但是我发现的东西要么是指Selenium(RC)的过时版本,要么是指Python的过时版本。

来自两个以上string的最长公共子string – Python

我正在寻找一个Python库来查找一组string中最长的公共子string 。 有两种方法可以解决这个问题: 使用后缀树 使用dynamic编程。 实施的方法并不重要。 重要的是它可以用于一组string (不仅是两个string)。

如何将打印输出格式化为固定宽度?

我有这个代码(打印string中的所有排列的发生) def splitter(str): for i in range(1, len(str)): start = str[0:i] end = str[i:] yield (start, end) for split in splitter(end): result = [start] result.extend(split) yield result el =[]; string = "abcd" for b in splitter("abcd"): el.extend(b); unique = sorted(set(el)); for prefix in unique: if prefix != "": print "value " , prefix , "- […]

反引号对python解释器意味着什么:`num`

我在玩弄列表parsing,并在另一个网站上看到这个小片段: return ''.join([`num` for num in xrange(loop_count)]) 我花了几分钟的时间试图复制函数(通过键入),然后才实现了`num`位的分解。 在这些angular色中包含一个陈述是什么呢? 从我所能看到的是str(num)的等价物。 但是当我计时时: return ''.join([str(num) for num in xrange(10000000)]) 它需要4.09s,而: return ''.join([`num` for num in xrange(10000000)]) 需要2.43s。 两者都给出了相同的结果,但一个是慢很多。 这里发生了什么? 编辑:奇怪… repr()给出比`num`稍慢的结果。 2.99s vs 2.43s。 使用Python 2.6(尚未尝试3.0)。

Python中的Bash反引号的等价

Python和Python中的反引号是什么? 也就是说,在Ruby中我可以这样做: foo = `cat /tmp/baz` Python中的等价语句是什么样的? 我已经尝试了os.system("cat /tmp/baz")但是将结果标准化并返回给我该操作的错误代码。

如何防止errno 32破pipe?

目前我正在使用python构build的应用程序。 当我在个人电脑上运行它,它没有任何问题。 但是,当我把它移到生产服务器。 它不断显示我附带的错误如下: 我已经做了一些研究,并得到了最终用户浏览器在服务器仍在忙于发送数据时停止连接的原因。 我想知道为什么会发生,什么是阻止它在生产服务器上正常运行的根本原因,而在个人计算机上运行。 任何意见表示赞赏 Exception happened during processing of request from ('127.0.0.1', 34226) Traceback (most recent call last): File "/usr/lib/python2.7/SocketServer.py", line 284, in _handle_request_noblock self.process_request(request, client_address) File "/usr/lib/python2.7/SocketServer.py", line 310, in process_request self.finish_request(request, client_address) File "/usr/lib/python2.7/SocketServer.py", line 323, in finish_request self.RequestHandlerClass(request, client_address, self) File "/usr/lib/python2.7/SocketServer.py", line 641, in __init__ self.finish() File "/usr/lib/python2.7/SocketServer.py", […]

与Python和urllib2的源接口

如何设置Python和urllib2的源IP /接口?

在string中查找最长的重复序列

我需要find一个string中最长的序列,必须重复三次或更多次。 所以,例如,如果我的string是: fdwaw4helloworldvcdv1c3xcv3xcz1sda21f2sd1ahelloworldgafgfa4564534321fadghelloworld 那么我想要返回值“ helloworld ”。 我知道一些方法来完成这个,但我面临的问题是,实际的string是荒谬的大,所以我真的在寻找一种方法,可以及时做到这一点。

总结一个数字的数字 – python

如果我想查找一个数字的总和,即: input: 932 输出: 14 ,即(9 + 3 + 2) 这样做的最快方法是什么? 我本能地做了: sum(int(digit) for digit in str(number)) 我在网上find了这个: sum(map(int, str(number))) 哪个最好用于速度,还有其他更快的方法吗?

如何在Python中创build一个只读的类属性?

基本上我想要做这样的事情: class foo: x = 4 @property @classmethod def number(cls): return x 那么我想下面的工作: >>> foo.number 4 不幸的是,上述不起作用。 而不是给我4它给我<property object at 0x101786c58> 。 有没有办法达到上述目的?