파이썬 몰랐던 것 정리

def mul_return(a):
    b = a + 1
    return a,b

mul_return(1)

-->결과 : (1,2) 

튜플로 return됨

댓글

Designed by JB FACTORY