Mercurial > op > Looping
view Looping.py @ 4:d788c88f41bd >>178
Rubyのベンチマークを追加。ソースコードは2ch.netの>>178からコピー。
author | "uncorrelated zombie" <uncorrelated@yahoo.co.jp> |
---|---|
date | Thu, 17 Feb 2011 09:01:50 +0900 |
parents | 57283e4fdd4b |
children |
line wrap: on
line source
#!/usr/bin/env python import time class Looping: "Looping Class" n0 = 0 def calc(self, n): n1 = self.n0 + (1 - 2*(n%2)); self.n0 = n; return n1 if __name__ == "__main__": s = Looping() c = 0 n = 1 t1 = time.time() while c<2147483647: n = s.calc(n) c = c + 1 t2 = time.time() print n, "Python\t", (t2 - t1)