I am making a text based adventure game with commands to look at the environment aswell as details within the environment; I am curious if there is a better way to make multiple choice look commands, maybe some way to lump all the elif statements together as they all do the same thing anyways.
if choice == "look river":
print(f"{Back.BLUE}The water is merky.{Style.RESET_ALL}")
print(f"{Fore.YELLOW}There is something in the river reflecting sunlight.{Style.RESET_ALL}")
elif choice =="look river bank":
print(f"{Back.BLUE}The water is merky.{Style.RESET_ALL}")
print(f"{Fore.YELLOW}There is something in the river reflecting sunlight.{Style.RESET_ALL}")
elif choice =="look water":
print(f"{Back.BLUE}The water is merky.{Style.RESET_ALL}")
print(f"{Fore.YELLOW}There is something in the river