''' Purpose: check if the empty string evaluates to True or False ''' s = "" if ( s ) : # s is our test condition print( "empty string is True" ) # this line is executed if s evaluates to True else : print( "empty string is False" ) # this line is executed if s evalutes to False