|
|
|
|
|
by danuker
1214 days ago
|
|
Python: - functions - classes - list comprehensions - generators - inheritance - operators - string interpolation (a handful of syntaxes) - module system hard to wrap your head around - async (I think async is a workaround for getting more done with one thread because of the GIL). Pointless on machines with increasing number of cores. Just get multithreading right (and I want to learn Clojure's model - focusing on immutability) and you will not need async. Python can barely share memory across threads. I'm not sure you can get by without serialization. |
|