Explore >> Select a destination


You are here

akaptur.github.com
| | yasoob.me
9.1 parsecs away

Travel
| | Hi people! Recently, I was super confused when I found out that: >>> pow(3,89) runs slower than: >>> 3**89 I tried to think of a suitable answer but couldn't find any. I timed the execution of both of these statements using the timeit module in Python3: $ python3 -m timeit 'pow(3,89)' 500000 loops, best of 5: 688 nsec per loop $ python3 -m timeit '3**89' 500000 loops, best of 5: 519 nsec per loop The difference is not big.
| | pymotw.com
9.3 parsecs away

Travel
| |
| | www.justus.pw
8.3 parsecs away

Travel
| |
| | jordanorelli.com
74.1 parsecs away

Travel
| How to use interfaces in Go Before I started programming Go, I was doing most of my work with Python. As a Python programmer, I found that learning to use interfaces in Go was extremely difficult....