MP>if x in (1,2,4,6,7): MP> print('x is either 1,2,4,6 or 7') MP>else: MP> print('x is something else') MP>