Could anyone help me solve this Python problem? Thanks
Text Adventure
You may be familiar with Bandersnatch on Netflix. The show letsyou make choices and changes the outcome of the show based on thosechoices. Those are heavily based on adventure novels that werepopular in the 70’s and 80’s. We’re going to write a program thatplays adventure games based on input files.
You must implement a class that represents the state of a roomor game section. The class will have a room_id, a description, andpossibly a choice1 and a choice 2. You should implement the __str__override to output the state of the room. You
OR
OR