Created
October 9, 2017 13:36
-
-
Save tamago324/5fe7298fa496b3d2f970825d0459eef1 to your computer and use it in GitHub Desktop.
Pythonのdatetime.timeのソースでのプロパティの記述
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Read-only field accessors | |
@property | |
def hour(self): | |
"""hour (0-23)""" | |
return self._hour |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment