From bedcd3e52be7abefb599c000a391acb26828b66f Mon Sep 17 00:00:00 2001 From: rmaues Date: Thu, 11 Jun 2020 20:32:34 -0300 Subject: [PATCH] Fixing print function without paranthesis --- legacy/python/bsm_mcs_euro.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legacy/python/bsm_mcs_euro.py b/legacy/python/bsm_mcs_euro.py index 3665503..91b6375 100644 --- a/legacy/python/bsm_mcs_euro.py +++ b/legacy/python/bsm_mcs_euro.py @@ -22,4 +22,4 @@ C0 = np.exp(-r * T) * np.sum(hT) / I # Monte Carlo estimator # Result Output -print "Value of the European Call Option %5.3f" % C0 \ No newline at end of file +print ("Value of the European Call Option %5.3f" % C0)