Generation

generate functionWed, 25 Jan 2023

The Price Is Right

def price_is_right(guess, actual): if guess > actual: return "Too high" if guess < actual: return "Too low" if guess == actual: return "Perfect!" #return guess == actual

Questions about programming?Chat with your personal AI assistant