Hacker News
new
|
past
|
comments
|
ask
|
show
|
jobs
|
submit
login
sergiosgc
on Dec 2, 2015
|
parent
|
context
|
favorite
| on:
Why I Still Use Python for High Performance Scient...
Just to clarify your python 2 note: In python 3 keys() returns an iterator, so there is no penalty (i.e. iterkeys was dropped, keys assumed iterkeys interface).
The equivalent python2 behaviour can be obtained using list(somedict.keys())
Consider applying for YC's Summer 2026 batch! Applications are open till May 4
Guidelines
|
FAQ
|
Lists
|
API
|
Security
|
Legal
|
Apply to YC
|
Contact
Search:
The equivalent python2 behaviour can be obtained using list(somedict.keys())