プログラミングパラダイムの基礎
Eleanor Thomas
Senior Data Analytics Engineer
純粋関数
def pure_sum(x, y): output = x + y return output
非純粋な関数
def not_pure_sum(x, y): output = x + y print(output) return output