How to get the selected value of an input_select

New to both Appdaemon and python.
I found how to select an option in the api reference.
self.select_option("input_select.mode", "Day")
But how do i read what is selected?

use self.get_state

Example

some_var = self.get_state("input_select.mode")