Originally posted by: diegoalcatraz
Python
Originally posted by: diegoalcatraz
Python is a good starting point if you're looking for instant gratification. Some of the other languages take a bit of setup before you can actually see something meaningful done. Once you understand variables, functions, classes, and their package system, you'll be ready to start making experimental programs.
Edit: Feel free to PM any questions. It's been a while since I've used Python, but it's hard to forget =)
Originally posted by: w00t
Doing a tutorial right now seems to be going well...
>>> name = raw_input("Please enter your name")
Please enter your name James
>>> print name
James
>>> print "Hello",name
Hello James
>>> print "Hello" , name, "- Your learning!"
Hello James - Your learning!
Well what do you want to do? What you should focus on depends on how you answer that question.Originally posted by: w00t
I want to learn to program.....
Where do I start?
Originally posted by: w00t
man, I am so confused doing this tutorials.
Originally posted by: Evander
You might like Visual Basic 2005 Express- Microsoft gives it (and pdf tutorials when you register) away for free. Your apps from the beginning have a GUI, and adding fancy stuff like graphics, music, and video is trivial thanks to the built in set of controls in VB. For example, just drag a Windows Media Player controller into your GUI, alter the properties of this control to give the path to your mp3 or avi file, and you're done- it will play in your app with no effort from you.
You need not worry about being stuck on windows only either. Once to learn the code, you can move on to Mac and Linux with kbasic:
http://www.kbasic.com/
