0

My friends were wondering if I could teach them the basics of coding. What order should I do it in? The basic things I want to teach them are input/output, data types (numbers, strings, arrays, etc.), flow control (loops, if/else), functions, variables, and maybe oop if I'm in the right mood.
Also, would python be a good language to start with? It's definitely the language I know the best.

Comments
  • 1
    Yea sure Python and Node js are good to learn since the syntax isnt that difficult.. give them some online recources later on though aswell, i recommend w3schools
  • 1
    People who want to learn can use internet freely.
  • 1
    Make sure to explain what expressions and statements are so they don't do this:

    if (some_bool) {

    return true;

    } else {

    return false;

    }
  • 0
    Take an ooen book for example: https://openbook.rheinwerk-verlag.de/...
    Sorry it's a german one, but check out the ToC and that's a common order
  • 1
    Please don't teach oop with python.
  • 0
    @green-portal need to remember next time somebody asks.
Add Comment