from enum import Enumclass Season(Enum): Summer = 0 Fall = 1 Winter = 2 Spring = 3winter = Season(2)# winter is Season.Winterprint(winter)