Useful programming languages to learn?

  • Thread starter Thread starter Arsenic&Lace
  • Start date Start date
  • Tags Tags
    Programming
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
31 replies · 10K views
From Bipolarity,

The default Python IDE is very user friendly, and I found Python very nice when designing GUIs, performing my hobby cryptanalysis among various things.

That is great to know. This makes Python more appealing to try to learn than it seemed before. (That it can create graphical user-interfaces).

Both Python and Processing are OOP, so they have huge advantages over the non-OOP languages.

(Read about oop, still never understood clearly).
 
Physics news on Phys.org
symbolipoint said:
From Bipolarity,



That is great to know. This makes Python more appealing to try to learn than it seemed before. (That it can create graphical user-interfaces).



(Read about oop, still never understood clearly).

OOP is just about the implementation of things like classes, class attributes, object instantiation and inheritance. It allows for a way to visualize elements of the code which would otherwise be very abstract.

BiP