Using inequality operators, I have to define a procedure weekend which takes a string as its input and returns the boolean True if it\'s \'Saturday
weekend
True
def weekend(day): # your code here if day == 'Saturday' or day == 'Sunday': return True else: return False