An empty statement is expressed with a single semicolon, and indicates no action. Can be used wherever an expression is required but no action is intended, or simply to emphatically express that nothing will happen in this part of the code:

// We clearly express here that if n is 10, nothing will happen.
if n == 10:
	;

Twitter Facebook LinkedIn Youtube Slideshare Github