|
You are here |
eli.thegreenplace.net | ||
| | | | |
yasoob.me
|
|
| | | | | 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. | |
| | | | |
akaptur.github.com
|
|
| | | | | Last week at Hacker School I did a quick presentation on python bytecode and the dis module. The disassembler is a very powerful tool with a gentle ... | |
| | | | |
blog.m-ou.se
|
|
| | | | | Have you ever seen the Rust compiler give a Python error? Or better, have you ever seen rust-analyzer complain about Python syntax? In this post, we'll extend our python!{} macro to make that happen. | |
| | | | |
shibumi.dev
|
|
| | | How to fix PDF display issues with Chrome | ||