다음 코드를 사용하면 된다.



def getType(x):

    return {

        0: 'A',

        1: 'B',

        2: 'C'

    }[x]



>>> getType(0)

'A'



'[Lang] Python' 카테고리의 다른 글

pip command 리스트  (1) 2019.11.09
country code로 timezone 구하기  (0) 2016.11.09

+ Recent posts