[docs]defretrieve_stored_games():"""Retrieve all stored games"""saved_games=userdata.saved_gamesreturnsaved_gamesor[]
[docs]deflist_continuable_games_index(stored_games):"""Return a list of indexes of the stored games that can be continued."""ifnotstored_games:# no gamesreturn[]return[indexforindex,gameinenumerate(stored_games)ifgame["win_status"]isNone]
[docs]deflist_continuable_games(stored_games):"""Return a list of the stored games that can be continued."""ifnotstored_games:# no gamesreturn[]return[gameforgameinstored_gamesifgame["win_status"]isNone]