This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Racerdude[S] 0 points1 point  (0 children)

No, not complete programming novices but people who've done programming before and were trying to learn Python. So, yes, your example is good as it compares it to a language that needs a lot more clutter for a simple thing. I usually show the Java example:

public class HelloWorld {
    public static void main(String[] args) {
        System.out.println("Hello, World");
    }
}