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

Want to kickstart your project?Use the new AI Studio to create your code