[019] 대입 연산자 이해하기(=)

책 내용에 대한 무단배포 방지를 위해 최소한으로 정리

a = 1
b = 2
ret = a+b
print('a와 b를 더한 값은', end='')
print(ret,end='')
print('입니다')

Comments