From 300970953b538128c29b81f2ece0c6f21758ac64 Mon Sep 17 00:00:00 2001 From: Richard Nienaber Date: Sun, 21 Feb 2021 12:31:39 +0000 Subject: [PATCH] fix formatting to make output identical --- 87 3-D Plot/python/3dplot.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/87 3-D Plot/python/3dplot.py b/87 3-D Plot/python/3dplot.py index 99e8c438..2dda44ff 100644 --- a/87 3-D Plot/python/3dplot.py +++ b/87 3-D Plot/python/3dplot.py @@ -9,8 +9,8 @@ import math def equation(input): return 30 * math.exp(-input * input / 100) -print(" " * 32 + "3D PLOT\n") -print(" " * 15 + "CREATIVE COMPUTING MORRISTOWN, NEW JERSEY\n") +print(" " * 32 + "3D PLOT") +print(" " * 15 + "CREATIVE COMPUTING MORRISTOWN, NEW JERSEY\n\n\n\n") for x in range (-300, 315, 15): x1 = x / 10 @@ -23,4 +23,4 @@ for x in range (-300, 315, 15): if z > l: l = z yPlot[z] = "*" - print("".join(yPlot) + "\n") \ No newline at end of file + print("".join(yPlot)) \ No newline at end of file