Where to learn programming?
Go to solution
Solved by Pak_Track,
You know, codeacademy.com is good for learning python and a few other languages. Interactive GUI and all.
Although, I suggest you take some theory classes, before learning any languages. Pseudocode is great for beginners since it'll give you an idea of coding.
Example
//Initializing the variablesA = 0,B = 0,C = 0//Inputting the two numbers, note that no message will be displayed to the userinput A,B// Using C variable to represent the sumC = A+B// Printing the Sumprint C
^That's a script that adds to numbers and displays the sum, written in pseudocode.
EDIT: Python is great for beginners because it's pretty easy to read/write, due to it having quite an easy syntax.

Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now