You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: python_files/Notebooks intro.ipynb
+48-47Lines changed: 48 additions & 47 deletions
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@
11
11
"cell_type": "markdown",
12
12
"metadata": {},
13
13
"source": [
14
-
"1. Open the command palette with the shortcut: `Ctrl/Command` + `Shift` + `P`\r\n",
14
+
"1. Open the command palette with the shortcut: `Ctrl/Command` + `Shift` + `P`\n",
15
15
"2. Search for the command `Create New Blank Notebook`"
16
16
]
17
17
},
@@ -26,8 +26,8 @@
26
26
"cell_type": "markdown",
27
27
"metadata": {},
28
28
"source": [
29
-
"1. Open the command palette with the shortcut: `Ctrl/Command` + `Shift` + `P`\r\n",
30
-
"\r\n",
29
+
"1. Open the command palette with the shortcut: `Ctrl/Command` + `Shift` + `P`\n",
30
+
"\n",
31
31
"2. Search for the command `Python: Open Start Page`"
32
32
]
33
33
},
@@ -42,10 +42,10 @@
42
42
"cell_type": "markdown",
43
43
"metadata": {},
44
44
"source": [
45
-
"You are currently viewing what we call our Notebook Editor. It is an interactive document based on Jupyter Notebooks that supports the intermixing of code, outputs and markdown documentation. \r\n",
46
-
"\r\n",
47
-
"This cell is a markdown cell. To edit the text in this cell, simply double click on the cell to change it into edit mode.\r\n",
48
-
"\r\n",
45
+
"You are currently viewing what we call our Notebook Editor. It is an interactive document based on Jupyter Notebooks that supports the intermixing of code, outputs and markdown documentation. \n",
46
+
"\n",
47
+
"This cell is a markdown cell. To edit the text in this cell, simply double click on the cell to change it into edit mode.\n",
48
+
"\n",
49
49
"The next cell below is a code cell. You can switch a cell between code and markdown by clicking on the code  /markdown  icons or using the keyboard shortcut `M` and `Y` respectively."
50
50
]
51
51
},
@@ -55,16 +55,16 @@
55
55
"metadata": {},
56
56
"outputs": [],
57
57
"source": [
58
-
"print('hello world')"
58
+
"print(\"hello world\")"
59
59
]
60
60
},
61
61
{
62
62
"cell_type": "markdown",
63
63
"metadata": {},
64
64
"source": [
65
-
"* To execute the code in the cell above, click on the cell to select it and then either press the play  button in the cell toolbar, or use the keyboard shortcut `Ctrl/Command` + `Enter`.\r\n",
66
-
"* To edit the code, just click in cell and start editing.\r\n",
67
-
"* To add a new cell below, click the `Add Cell` icon  at the bottom left of the cell or enter command mode with the `ESC` Key and then use the keyboard shortcut `B` to create the new cell below.\r\n"
65
+
"* To execute the code in the cell above, click on the cell to select it and then either press the play  button in the cell toolbar, or use the keyboard shortcut `Ctrl/Command` + `Enter`.\n",
66
+
"* To edit the code, just click in cell and start editing.\n",
67
+
"* To add a new cell below, click the `Add Cell` icon  at the bottom left of the cell or enter command mode with the `ESC` Key and then use the keyboard shortcut `B` to create the new cell below.\n"
68
68
]
69
69
},
70
70
{
@@ -78,40 +78,40 @@
78
78
"cell_type": "markdown",
79
79
"metadata": {},
80
80
"source": [
81
-
"**Variable explorer**\r\n",
82
-
"\r\n",
83
-
"To view all your active variables and their current values in the notebook, click on the variable explorer icon  in the top toolbar.\r\n",
"To view your data frame in a more visual \"Excel\" like format, open the variable explorer and to the left of any dataframe object, you will see the data viewer icon  which you can click to open the data viewer.\r\n",
"To export your notebook to a Python file (.py), click on the `Convert to Python script` icon  in the top toolbar \r\n",
"If you have a graph (such as matplotlib) in your output, you'll notice if you hover over the graph, the `Plot Viewer` icon  will appear in the top left. Click the icon to open up the graph in the Plotviewer which allows you to zoom on your plots and export it in formats such as png and jpeg.\r\n",
"The notebook editor will detect all kernels in your system by default. To change your notebook kernel, click on the kernel status in the top toolbar at the far right. For example, your kernel status may say \"Python 3: Idle\". This will open up the kernel selector where you can choose your desired kernel.\r\n",
"To connect to a remote Jupyter server, open the command prompt and search for the command `Specify remote or local Jupyter server for connections`. Then select `Existing` and enter the remote Jupyter server URL. Afterwards, you'll be prompted to reload the window and the Notebook will be opened connected to the remote Jupyter server.\r\n",
114
-
"\r\n",
81
+
"**Variable explorer**\n",
82
+
"\n",
83
+
"To view all your active variables and their current values in the notebook, click on the variable explorer icon  in the top toolbar.\n",
"To view your data frame in a more visual \"Excel\" like format, open the variable explorer and to the left of any dataframe object, you will see the data viewer icon  which you can click to open the data viewer.\n",
"To export your notebook to a Python file (.py), click on the `Convert to Python script` icon  in the top toolbar \n",
"If you have a graph (such as matplotlib) in your output, you'll notice if you hover over the graph, the `Plot Viewer` icon  will appear in the top left. Click the icon to open up the graph in the Plotviewer which allows you to zoom on your plots and export it in formats such as png and jpeg.\n",
"The notebook editor will detect all kernels in your system by default. To change your notebook kernel, click on the kernel status in the top toolbar at the far right. For example, your kernel status may say \"Python 3: Idle\". This will open up the kernel selector where you can choose your desired kernel.\n",
"To connect to a remote Jupyter server, open the command prompt and search for the command `Specify remote or local Jupyter server for connections`. Then select `Existing` and enter the remote Jupyter server URL. Afterwards, you'll be prompted to reload the window and the Notebook will be opened connected to the remote Jupyter server.\n",
0 commit comments