Hacker News new | ask | show | jobs
by andirk 395 days ago
I'm currently learning Python for my ML/Tensorflow online coirses. I thought bc I know C++ it'd be super easy but theres a lot of differences between them. Turns out an "easier" big boy language still has a bit of a learning curve
1 comments

Python: dynamically typed, structurally typed, garbage collected, exceptions C++: statically typed, nominally typed, manual memory management, exceptions

It's a big jump from C++ to Python. If you want a midway, use Go.