|
4 | 4 | "cell_type": "markdown", |
5 | 5 | "metadata": {}, |
6 | 6 | "source": [ |
7 | | - "SHORTCUTS\n", |
| 7 | + "## SHORTCUTS\n", |
8 | 8 | "Press h to see the list of all shortcuts in Jupyter\n", |
9 | 9 | "\n", |
10 | | - "MATH\n", |
11 | | - "+\tAddition: adds two operands\tx + y\n", |
12 | | - "-\tSubtraction: subtracts two operands\tx - y\n", |
13 | | - "*\tMultiplication: multiplies two operands\tx * y\n", |
| 10 | + "## MATH\n", |
| 11 | + "\n", |
| 12 | + "\\+\tAddition: adds two operands\tx + y\n", |
| 13 | + "\n", |
| 14 | + "\\-\tSubtraction: subtracts two operands\tx - y\n", |
| 15 | + "\n", |
| 16 | + "\\*\tMultiplication: multiplies two operands\tx * y\n", |
| 17 | + "\n", |
14 | 18 | "/\tDivision (float): divides the first operand by the second\tx / y\n", |
| 19 | + "\n", |
15 | 20 | "//\tDivision (floor): divides the first operand by the second\tx // y\n", |
| 21 | + "\n", |
16 | 22 | "%\tModulus: returns the remainder when first operand is divided by the second\tx % y\n", |
17 | 23 | "\n", |
18 | | - "COMPARE\n", |
19 | | - ">\tGreater than: True if left operand is greater than the right\tx > y\n", |
| 24 | + "## COMPARE\n", |
| 25 | + "\n", |
| 26 | + "\\>\tGreater than: True if left operand is greater than the right\tx > y\n", |
| 27 | + "\n", |
20 | 28 | "<\tLess than: True if left operand is less than the right\tx < y\n", |
| 29 | + "\n", |
21 | 30 | "==\tEqual to: True if both operands are equal\tx == y\n", |
| 31 | + "\n", |
22 | 32 | "!=\tNot equal to - True if operands are not equal\tx != y\n", |
23 | | - ">=\tGreater than or equal to: True if left operand is greater than or equal to the right\tx >= y\n", |
| 33 | + "\n", |
| 34 | + "\\>=\tGreater than or equal to: True if left operand is greater than or equal to the right\tx >= y\n", |
| 35 | + "\n", |
24 | 36 | "<=\tLess than or equal to: True if left operand is less than or equal to the right\tx <= y\n", |
25 | 37 | "\n", |
26 | | - "LOGICAL \n", |
| 38 | + "## LOGICAL \n", |
| 39 | + "\n", |
27 | 40 | "and\tLogical AND: True if both the operands are true\tx and y\n", |
| 41 | + "\n", |
28 | 42 | "or\tLogical OR: True if either of the operands is true\tx or y\n", |
| 43 | + "\n", |
29 | 44 | "not\tLogical NOT: True if operand is false\tnot x\n", |
30 | 45 | "\n", |
31 | | - "FOR MATLAB PLOTTING\n", |
| 46 | + "## FOR MATLAB PLOTTING\n", |
| 47 | + "\n", |
32 | 48 | "**Colors**\n", |
33 | 49 | " \n", |
34 | | - " The following color abbreviations are supported:\n", |
35 | | - " \n", |
36 | 50 | " ============= ===============================\n", |
37 | 51 | " character color\n", |
38 | 52 | " ============= ===============================\n", |
|
75 | 89 | " ``'_'`` hline marker\n", |
76 | 90 | " ============= ===============================\n", |
77 | 91 | " \n", |
78 | | - " **Line Styles**\n", |
| 92 | + "**Line Styles**\n", |
79 | 93 | " \n", |
80 | 94 | " ============= ===============================\n", |
81 | 95 | " character description\n", |
|
0 commit comments