Why is semicolon allowed in this Python snippet?

Python does not require semicolons to terminate statements. Semicolons can be used to delimit statements if you wish to put multiple statements on the same line.

Now, why is this allowed? It’s a simple design decision. I don’t think Python needs this semicolon thing, but somebody thought it would be nice to have and added it to the language.

Leave a Comment