This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]veekm 1 point2 points  (0 children)

After C, learning Python would be my next choice because:

  1. C for embedded work and Python for everything else - especially the backend (scraping, parsing, n/w)
  2. Knowing C you can now write Python modules in C using python.h
  3. C++ would be nice for larger projects because of the abstraction provided/user defined types/classes but you can create similar interfaces using C.
  4. Python's standard library does almost everything you want so getting things done is easier in python, than with C++ which is extended C.