From 4b4e5b9be6af08d9c2a5ffa702cf2726743ae6f3 Mon Sep 17 00:00:00 2001 From: Eric Hedengren <46898294+BaconBomber@users.noreply.github.com> Date: Thu, 18 Jul 2019 17:29:04 -0600 Subject: [PATCH] Add files via upload --- Basic Python Knowledge.ipynb | 40 ++++++++++++++++++++++++------------ 1 file changed, 27 insertions(+), 13 deletions(-) diff --git a/Basic Python Knowledge.ipynb b/Basic Python Knowledge.ipynb index bd29ff0..6c7479f 100644 --- a/Basic Python Knowledge.ipynb +++ b/Basic Python Knowledge.ipynb @@ -4,35 +4,49 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "SHORTCUTS\n", + "## SHORTCUTS\n", "Press h to see the list of all shortcuts in Jupyter\n", "\n", - "MATH\n", - "+\tAddition: adds two operands\tx + y\n", - "-\tSubtraction: subtracts two operands\tx - y\n", - "*\tMultiplication: multiplies two operands\tx * y\n", + "## MATH\n", + "\n", + "\\+\tAddition: adds two operands\tx + y\n", + "\n", + "\\-\tSubtraction: subtracts two operands\tx - y\n", + "\n", + "\\*\tMultiplication: multiplies two operands\tx * y\n", + "\n", "/\tDivision (float): divides the first operand by the second\tx / y\n", + "\n", "//\tDivision (floor): divides the first operand by the second\tx // y\n", + "\n", "%\tModulus: returns the remainder when first operand is divided by the second\tx % y\n", "\n", - "COMPARE\n", - ">\tGreater than: True if left operand is greater than the right\tx > y\n", + "## COMPARE\n", + "\n", + "\\>\tGreater than: True if left operand is greater than the right\tx > y\n", + "\n", "<\tLess than: True if left operand is less than the right\tx < y\n", + "\n", "==\tEqual to: True if both operands are equal\tx == y\n", + "\n", "!=\tNot equal to - True if operands are not equal\tx != y\n", - ">=\tGreater than or equal to: True if left operand is greater than or equal to the right\tx >= y\n", + "\n", + "\\>=\tGreater than or equal to: True if left operand is greater than or equal to the right\tx >= y\n", + "\n", "<=\tLess than or equal to: True if left operand is less than or equal to the right\tx <= y\n", "\n", - "LOGICAL \n", + "## LOGICAL \n", + "\n", "and\tLogical AND: True if both the operands are true\tx and y\n", + "\n", "or\tLogical OR: True if either of the operands is true\tx or y\n", + "\n", "not\tLogical NOT: True if operand is false\tnot x\n", "\n", - "FOR MATLAB PLOTTING\n", + "## FOR MATLAB PLOTTING\n", + "\n", "**Colors**\n", " \n", - " The following color abbreviations are supported:\n", - " \n", " ============= ===============================\n", " character color\n", " ============= ===============================\n", @@ -75,7 +89,7 @@ " ``'_'`` hline marker\n", " ============= ===============================\n", " \n", - " **Line Styles**\n", + "**Line Styles**\n", " \n", " ============= ===============================\n", " character description\n",