c3f3e60069
[BENCHMARKS] * NEW: Port Python benchmarks to Python 3.
11 lines
142 B
Python
Executable file
11 lines
142 B
Python
Executable file
#!/usr/bin/python
|
|
|
|
str = ''
|
|
i = 0
|
|
|
|
for i in range(0, 1000000):
|
|
for j in range(65, 91):
|
|
c = chr(j)
|
|
str += '.(' + c + ')'
|
|
|
|
print(len(str))
|