From ecf3f2df7311e5e62c63b69d507c04752a5519fc Mon Sep 17 00:00:00 2001 From: Christine Palamara Date: Sun, 17 Mar 2024 10:54:52 -0400 Subject: [PATCH] Update Colab_Notebook_General.ipynb Removed line that prints the datatype of gross_pay. --- Colab_Notebook_General.ipynb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Colab_Notebook_General.ipynb b/Colab_Notebook_General.ipynb index 30eba3f..645d95e 100644 --- a/Colab_Notebook_General.ipynb +++ b/Colab_Notebook_General.ipynb @@ -53,11 +53,10 @@ "net_pay = 10000\n", "tax_rate = .33\n", "gross_pay = net_pay / (1 - tax_rate)\n", - "print(type(gross_pay))\n", "print(gross_pay)\n", "annual_salary = gross_pay * 12\n", "print(round(annual_salary))\n" ] } ] -} \ No newline at end of file +}