Author Topic: Best language for beginners?  (Read 14219 times)

0 Members and 1 Guest are viewing this topic.

Offline willrandship

  • Omnimagus of the Multi-Base.
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2953
  • Rating: +98/-13
  • Insert sugar to begin programming subroutine.
    • View Profile
Re: Best language for beginners?
« Reply #45 on: February 11, 2012, 09:35:20 am »
I'd recommend C/C++ if you're willing, as it helps people grasp the limitations of how computers actually think, without delving into assembly. Higher-level langs like Python or Java tend to obscure those, but they still crop up in annoying ways (like how I can use an n-sized int in python, but I'm restricted to a list length of 65535 or something.)

The differences between python 2.x and 3.x are minimal enough that a beginner should probably just stick to 3. It's mostly mild syntax changes for very simple commands (anything more complex is in a library anyways)
« Last Edit: February 11, 2012, 09:37:04 am by willrandship »