diff --git a/test/stats_scipy_get_distributions.py b/test/stats_scipy_get_distributions.py index 1afb98457..e6cd62e4a 100644 --- a/test/stats_scipy_get_distributions.py +++ b/test/stats_scipy_get_distributions.py @@ -379,7 +379,7 @@ def show_dist(d): pass result +="|] \n" result +=");\n" - print result + print(result) pass distributions = [ @@ -474,10 +474,10 @@ def show_dist(d): chi2(df=30.), ] -print "module M = Owl_stats" -print "let cdf_approximations = M.[" +print("module M = Owl_stats") +print("let cdf_approximations = M.[") for d in distributions: show_dist(d) pass -print "]" +print("]")