Bläddra i källkod

Inital Commit

Jimmy Allen 1 månad sedan
incheckning
5bb1ed2dfc

+ 61 - 0
.ipynb_checkpoints/01.Intro-checkpoint.ipynb

@@ -0,0 +1,61 @@
1
+{
2
+ "cells": [
3
+  {
4
+   "cell_type": "markdown",
5
+   "metadata": {},
6
+   "source": [
7
+    "# Introduction"
8
+   ]
9
+  },
10
+  {
11
+   "cell_type": "markdown",
12
+   "metadata": {},
13
+   "source": [
14
+    "Welcome to an introduction to Python.  \n",
15
+    "The aim of this course is to give a basic understanding of Python."
16
+   ]
17
+  },
18
+  {
19
+   "cell_type": "markdown",
20
+   "metadata": {},
21
+   "source": [
22
+    "During this course we are going to use jupyter. Jupyter allows you to interactively run python code."
23
+   ]
24
+  },
25
+  {
26
+   "cell_type": "markdown",
27
+   "metadata": {},
28
+   "source": [
29
+    "It is recomended that you follow the ```User Interface Tour``` in the ```Help``` menu."
30
+   ]
31
+  },
32
+  {
33
+   "cell_type": "markdown",
34
+   "metadata": {},
35
+   "source": [
36
+    "[ My First Program ] "
37
+   ]
38
+  }
39
+ ],
40
+ "metadata": {
41
+  "kernelspec": {
42
+   "display_name": "Python 3",
43
+   "language": "python",
44
+   "name": "python3"
45
+  },
46
+  "language_info": {
47
+   "codemirror_mode": {
48
+    "name": "ipython",
49
+    "version": 3
50
+   },
51
+   "file_extension": ".py",
52
+   "mimetype": "text/x-python",
53
+   "name": "python",
54
+   "nbconvert_exporter": "python",
55
+   "pygments_lexer": "ipython3",
56
+   "version": "3.7.0"
57
+  }
58
+ },
59
+ "nbformat": 4,
60
+ "nbformat_minor": 2
61
+}

+ 71 - 0
.ipynb_checkpoints/02.Hello-World-checkpoint.ipynb

@@ -0,0 +1,71 @@
1
+{
2
+ "cells": [
3
+  {
4
+   "cell_type": "markdown",
5
+   "metadata": {},
6
+   "source": [
7
+    "# Hello World"
8
+   ]
9
+  },
10
+  {
11
+   "cell_type": "markdown",
12
+   "metadata": {},
13
+   "source": [
14
+    "We are going to start with classic Hello World program  \n",
15
+    "Click the ```Run``` button above or press ```Ctrl+Enter```"
16
+   ]
17
+  },
18
+  {
19
+   "cell_type": "code",
20
+   "execution_count": null,
21
+   "metadata": {},
22
+   "outputs": [],
23
+   "source": [
24
+    "print(\"Hello World\")"
25
+   ]
26
+  },
27
+  {
28
+   "cell_type": "markdown",
29
+   "metadata": {},
30
+   "source": [
31
+    "Try to make it say hello, your name bellow. "
32
+   ]
33
+  },
34
+  {
35
+   "cell_type": "code",
36
+   "execution_count": null,
37
+   "metadata": {},
38
+   "outputs": [],
39
+   "source": []
40
+  },
41
+  {
42
+   "cell_type": "markdown",
43
+   "metadata": {},
44
+   "source": [
45
+    "<a href=\"http://localhost:8888/notebooks/03.Variables.ipynb\">Previous intro</a> \n",
46
+    "<a style=\"float:right;margin-right:10em;\" href=\"http://localhost:8888/notebooks/03.maths.ipynb\">Next maths</a> "
47
+   ]
48
+  }
49
+ ],
50
+ "metadata": {
51
+  "kernelspec": {
52
+   "display_name": "Python 3",
53
+   "language": "python",
54
+   "name": "python3"
55
+  },
56
+  "language_info": {
57
+   "codemirror_mode": {
58
+    "name": "ipython",
59
+    "version": 3
60
+   },
61
+   "file_extension": ".py",
62
+   "mimetype": "text/x-python",
63
+   "name": "python",
64
+   "nbconvert_exporter": "python",
65
+   "pygments_lexer": "ipython3",
66
+   "version": "3.7.0"
67
+  }
68
+ },
69
+ "nbformat": 4,
70
+ "nbformat_minor": 2
71
+}

+ 32 - 0
.ipynb_checkpoints/03.Maths-checkpoint.ipynb

@@ -0,0 +1,32 @@
1
+{
2
+ "cells": [
3
+  {
4
+   "cell_type": "markdown",
5
+   "metadata": {},
6
+   "source": [
7
+    "# Maths"
8
+   ]
9
+  }
10
+ ],
11
+ "metadata": {
12
+  "kernelspec": {
13
+   "display_name": "Python 3",
14
+   "language": "python",
15
+   "name": "python3"
16
+  },
17
+  "language_info": {
18
+   "codemirror_mode": {
19
+    "name": "ipython",
20
+    "version": 3
21
+   },
22
+   "file_extension": ".py",
23
+   "mimetype": "text/x-python",
24
+   "name": "python",
25
+   "nbconvert_exporter": "python",
26
+   "pygments_lexer": "ipython3",
27
+   "version": "3.7.0"
28
+  }
29
+ },
30
+ "nbformat": 4,
31
+ "nbformat_minor": 2
32
+}

+ 40 - 0
.ipynb_checkpoints/03.maths-checkpoint.ipynb

@@ -0,0 +1,40 @@
1
+{
2
+ "cells": [
3
+  {
4
+   "cell_type": "markdown",
5
+   "metadata": {},
6
+   "source": [
7
+    "# Maths"
8
+   ]
9
+  },
10
+  {
11
+   "cell_type": "markdown",
12
+   "metadata": {},
13
+   "source": [
14
+    "<a href=\"http://localhost:8888/notebooks/02.hello-world.ipynb\">Previous hello world</a> \n",
15
+    "<a style=\"float:right;margin-right:10em;\" href=\"http://localhost:8888/notebooks/04.variables.ipynb\">Next variables</a> "
16
+   ]
17
+  }
18
+ ],
19
+ "metadata": {
20
+  "kernelspec": {
21
+   "display_name": "Python 3",
22
+   "language": "python",
23
+   "name": "python3"
24
+  },
25
+  "language_info": {
26
+   "codemirror_mode": {
27
+    "name": "ipython",
28
+    "version": 3
29
+   },
30
+   "file_extension": ".py",
31
+   "mimetype": "text/x-python",
32
+   "name": "python",
33
+   "nbconvert_exporter": "python",
34
+   "pygments_lexer": "ipython3",
35
+   "version": "3.7.0"
36
+  }
37
+ },
38
+ "nbformat": 4,
39
+ "nbformat_minor": 2
40
+}

+ 101 - 0
.ipynb_checkpoints/04.Variables-checkpoint.ipynb

@@ -0,0 +1,101 @@
1
+{
2
+ "cells": [
3
+  {
4
+   "cell_type": "markdown",
5
+   "metadata": {},
6
+   "source": [
7
+    "# Variables"
8
+   ]
9
+  },
10
+  {
11
+   "cell_type": "markdown",
12
+   "metadata": {},
13
+   "source": [
14
+    "Variables are used to store data that can change over time"
15
+   ]
16
+  },
17
+  {
18
+   "cell_type": "code",
19
+   "execution_count": 9,
20
+   "metadata": {},
21
+   "outputs": [
22
+    {
23
+     "name": "stdout",
24
+     "output_type": "stream",
25
+     "text": [
26
+      "1\n"
27
+     ]
28
+    }
29
+   ],
30
+   "source": [
31
+    "i = 1 # create an interger \n",
32
+    "print(i)"
33
+   ]
34
+  },
35
+  {
36
+   "cell_type": "code",
37
+   "execution_count": 10,
38
+   "metadata": {},
39
+   "outputs": [
40
+    {
41
+     "name": "stdout",
42
+     "output_type": "stream",
43
+     "text": [
44
+      "Hello\n"
45
+     ]
46
+    }
47
+   ],
48
+   "source": [
49
+    "s = \"Hello\" # create a string\n",
50
+    "print(s)"
51
+   ]
52
+  },
53
+  {
54
+   "cell_type": "code",
55
+   "execution_count": 11,
56
+   "metadata": {},
57
+   "outputs": [
58
+    {
59
+     "name": "stdout",
60
+     "output_type": "stream",
61
+     "text": [
62
+      "1.1\n"
63
+     ]
64
+    }
65
+   ],
66
+   "source": [
67
+    "f = 1.1 \n",
68
+    "print(f)"
69
+   ]
70
+  },
71
+  {
72
+   "cell_type": "markdown",
73
+   "metadata": {},
74
+   "source": [
75
+    "<a href=\"http://localhost:8888/notebooks/03.Variables.ipynb\">Previous Hello World</a> \n",
76
+    "<a style=\"float:right;margin-right:10em;\" href=\"http://localhost:8888/notebooks/03.Variables.ipynb\">Next Inputing</a> "
77
+   ]
78
+  }
79
+ ],
80
+ "metadata": {
81
+  "kernelspec": {
82
+   "display_name": "Python 3",
83
+   "language": "python",
84
+   "name": "python3"
85
+  },
86
+  "language_info": {
87
+   "codemirror_mode": {
88
+    "name": "ipython",
89
+    "version": 3
90
+   },
91
+   "file_extension": ".py",
92
+   "mimetype": "text/x-python",
93
+   "name": "python",
94
+   "nbconvert_exporter": "python",
95
+   "pygments_lexer": "ipython3",
96
+   "version": "3.7.0"
97
+  }
98
+ },
99
+ "nbformat": 4,
100
+ "nbformat_minor": 2
101
+}

+ 101 - 0
.ipynb_checkpoints/04.variables-checkpoint.ipynb

@@ -0,0 +1,101 @@
1
+{
2
+ "cells": [
3
+  {
4
+   "cell_type": "markdown",
5
+   "metadata": {},
6
+   "source": [
7
+    "# Variables"
8
+   ]
9
+  },
10
+  {
11
+   "cell_type": "markdown",
12
+   "metadata": {},
13
+   "source": [
14
+    "Variables are used to store data that can change over time"
15
+   ]
16
+  },
17
+  {
18
+   "cell_type": "code",
19
+   "execution_count": 9,
20
+   "metadata": {},
21
+   "outputs": [
22
+    {
23
+     "name": "stdout",
24
+     "output_type": "stream",
25
+     "text": [
26
+      "1\n"
27
+     ]
28
+    }
29
+   ],
30
+   "source": [
31
+    "i = 1 # create an interger \n",
32
+    "print(i)"
33
+   ]
34
+  },
35
+  {
36
+   "cell_type": "code",
37
+   "execution_count": 10,
38
+   "metadata": {},
39
+   "outputs": [
40
+    {
41
+     "name": "stdout",
42
+     "output_type": "stream",
43
+     "text": [
44
+      "Hello\n"
45
+     ]
46
+    }
47
+   ],
48
+   "source": [
49
+    "s = \"Hello\" # create a string\n",
50
+    "print(s)"
51
+   ]
52
+  },
53
+  {
54
+   "cell_type": "code",
55
+   "execution_count": 11,
56
+   "metadata": {},
57
+   "outputs": [
58
+    {
59
+     "name": "stdout",
60
+     "output_type": "stream",
61
+     "text": [
62
+      "1.1\n"
63
+     ]
64
+    }
65
+   ],
66
+   "source": [
67
+    "f = 1.1 \n",
68
+    "print(f)"
69
+   ]
70
+  },
71
+  {
72
+   "cell_type": "markdown",
73
+   "metadata": {},
74
+   "source": [
75
+    "<a href=\"http://localhost:8888/notebooks/03.Maths.ipynb\">Previous maths</a> \n",
76
+    "<a style=\"float:right;margin-right:10em;\" href=\"http://localhost:8888/notebooks/05.input.ipynb\">Next input</a> "
77
+   ]
78
+  }
79
+ ],
80
+ "metadata": {
81
+  "kernelspec": {
82
+   "display_name": "Python 3",
83
+   "language": "python",
84
+   "name": "python3"
85
+  },
86
+  "language_info": {
87
+   "codemirror_mode": {
88
+    "name": "ipython",
89
+    "version": 3
90
+   },
91
+   "file_extension": ".py",
92
+   "mimetype": "text/x-python",
93
+   "name": "python",
94
+   "nbconvert_exporter": "python",
95
+   "pygments_lexer": "ipython3",
96
+   "version": "3.7.0"
97
+  }
98
+ },
99
+ "nbformat": 4,
100
+ "nbformat_minor": 2
101
+}

+ 40 - 0
.ipynb_checkpoints/input-checkpoint.ipynb

@@ -0,0 +1,40 @@
1
+{
2
+ "cells": [
3
+  {
4
+   "cell_type": "markdown",
5
+   "metadata": {},
6
+   "source": [
7
+    "# Inputing data"
8
+   ]
9
+  },
10
+  {
11
+   "cell_type": "markdown",
12
+   "metadata": {},
13
+   "source": [
14
+    "<a href=\"http://localhost:8888/notebooks/04.variables.ipynb\">Previous variables</a> \n",
15
+    "<a style=\"float:right;margin-right:10em;\" href=\"http://localhost:8888/notebooks/06.if-statements.ipynb\">Next if statements</a> "
16
+   ]
17
+  }
18
+ ],
19
+ "metadata": {
20
+  "kernelspec": {
21
+   "display_name": "Python 3",
22
+   "language": "python",
23
+   "name": "python3"
24
+  },
25
+  "language_info": {
26
+   "codemirror_mode": {
27
+    "name": "ipython",
28
+    "version": 3
29
+   },
30
+   "file_extension": ".py",
31
+   "mimetype": "text/x-python",
32
+   "name": "python",
33
+   "nbconvert_exporter": "python",
34
+   "pygments_lexer": "ipython3",
35
+   "version": "3.7.0"
36
+  }
37
+ },
38
+ "nbformat": 4,
39
+ "nbformat_minor": 2
40
+}

+ 61 - 0
01.intro.ipynb

@@ -0,0 +1,61 @@
1
+{
2
+ "cells": [
3
+  {
4
+   "cell_type": "markdown",
5
+   "metadata": {},
6
+   "source": [
7
+    "# Introduction"
8
+   ]
9
+  },
10
+  {
11
+   "cell_type": "markdown",
12
+   "metadata": {},
13
+   "source": [
14
+    "Welcome to an introduction to Python.  \n",
15
+    "The aim of this course is to give a basic understanding of Python."
16
+   ]
17
+  },
18
+  {
19
+   "cell_type": "markdown",
20
+   "metadata": {},
21
+   "source": [
22
+    "During this course we are going to use jupyter. Jupyter allows you to interactively run python code."
23
+   ]
24
+  },
25
+  {
26
+   "cell_type": "markdown",
27
+   "metadata": {},
28
+   "source": [
29
+    "It is recomended that you follow the ```User Interface Tour``` in the ```Help``` menu."
30
+   ]
31
+  },
32
+  {
33
+   "cell_type": "markdown",
34
+   "metadata": {},
35
+   "source": [
36
+    "<a style=\"float:right;margin-right:10em;\" href=\"http://localhost:8888/notebooks/02.Hello-World.ipynb\">Next Hello World</a>"
37
+   ]
38
+  }
39
+ ],
40
+ "metadata": {
41
+  "kernelspec": {
42
+   "display_name": "Python 3",
43
+   "language": "python",
44
+   "name": "python3"
45
+  },
46
+  "language_info": {
47
+   "codemirror_mode": {
48
+    "name": "ipython",
49
+    "version": 3
50
+   },
51
+   "file_extension": ".py",
52
+   "mimetype": "text/x-python",
53
+   "name": "python",
54
+   "nbconvert_exporter": "python",
55
+   "pygments_lexer": "ipython3",
56
+   "version": "3.7.0"
57
+  }
58
+ },
59
+ "nbformat": 4,
60
+ "nbformat_minor": 2
61
+}

+ 71 - 0
02.hello-world.ipynb

@@ -0,0 +1,71 @@
1
+{
2
+ "cells": [
3
+  {
4
+   "cell_type": "markdown",
5
+   "metadata": {},
6
+   "source": [
7
+    "# Hello World"
8
+   ]
9
+  },
10
+  {
11
+   "cell_type": "markdown",
12
+   "metadata": {},
13
+   "source": [
14
+    "We are going to start with classic Hello World program  \n",
15
+    "Click the ```Run``` button above or press ```Ctrl+Enter```"
16
+   ]
17
+  },
18
+  {
19
+   "cell_type": "code",
20
+   "execution_count": null,
21
+   "metadata": {},
22
+   "outputs": [],
23
+   "source": [
24
+    "print(\"Hello World\")"
25
+   ]
26
+  },
27
+  {
28
+   "cell_type": "markdown",
29
+   "metadata": {},
30
+   "source": [
31
+    "Try to make it say hello, your name bellow. "
32
+   ]
33
+  },
34
+  {
35
+   "cell_type": "code",
36
+   "execution_count": null,
37
+   "metadata": {},
38
+   "outputs": [],
39
+   "source": []
40
+  },
41
+  {
42
+   "cell_type": "markdown",
43
+   "metadata": {},
44
+   "source": [
45
+    "<a href=\"http://localhost:8888/notebooks/01.intro.ipynb\">Previous intro</a> \n",
46
+    "<a style=\"float:right;margin-right:10em;\" href=\"http://localhost:8888/notebooks/03.maths.ipynb\">Next maths</a> "
47
+   ]
48
+  }
49
+ ],
50
+ "metadata": {
51
+  "kernelspec": {
52
+   "display_name": "Python 3",
53
+   "language": "python",
54
+   "name": "python3"
55
+  },
56
+  "language_info": {
57
+   "codemirror_mode": {
58
+    "name": "ipython",
59
+    "version": 3
60
+   },
61
+   "file_extension": ".py",
62
+   "mimetype": "text/x-python",
63
+   "name": "python",
64
+   "nbconvert_exporter": "python",
65
+   "pygments_lexer": "ipython3",
66
+   "version": "3.7.0"
67
+  }
68
+ },
69
+ "nbformat": 4,
70
+ "nbformat_minor": 2
71
+}

+ 40 - 0
03.maths.ipynb

@@ -0,0 +1,40 @@
1
+{
2
+ "cells": [
3
+  {
4
+   "cell_type": "markdown",
5
+   "metadata": {},
6
+   "source": [
7
+    "# Maths"
8
+   ]
9
+  },
10
+  {
11
+   "cell_type": "markdown",
12
+   "metadata": {},
13
+   "source": [
14
+    "<a href=\"http://localhost:8888/notebooks/02.hello-world.ipynb\">Previous hello world</a> \n",
15
+    "<a style=\"float:right;margin-right:10em;\" href=\"http://localhost:8888/notebooks/04.variables.ipynb\">Next variables</a> "
16
+   ]
17
+  }
18
+ ],
19
+ "metadata": {
20
+  "kernelspec": {
21
+   "display_name": "Python 3",
22
+   "language": "python",
23
+   "name": "python3"
24
+  },
25
+  "language_info": {
26
+   "codemirror_mode": {
27
+    "name": "ipython",
28
+    "version": 3
29
+   },
30
+   "file_extension": ".py",
31
+   "mimetype": "text/x-python",
32
+   "name": "python",
33
+   "nbconvert_exporter": "python",
34
+   "pygments_lexer": "ipython3",
35
+   "version": "3.7.0"
36
+  }
37
+ },
38
+ "nbformat": 4,
39
+ "nbformat_minor": 2
40
+}

+ 101 - 0
04.variables.ipynb

@@ -0,0 +1,101 @@
1
+{
2
+ "cells": [
3
+  {
4
+   "cell_type": "markdown",
5
+   "metadata": {},
6
+   "source": [
7
+    "# Variables"
8
+   ]
9
+  },
10
+  {
11
+   "cell_type": "markdown",
12
+   "metadata": {},
13
+   "source": [
14
+    "Variables are used to store data that can change over time"
15
+   ]
16
+  },
17
+  {
18
+   "cell_type": "code",
19
+   "execution_count": 9,
20
+   "metadata": {},
21
+   "outputs": [
22
+    {
23
+     "name": "stdout",
24
+     "output_type": "stream",
25
+     "text": [
26
+      "1\n"
27
+     ]
28
+    }
29
+   ],
30
+   "source": [
31
+    "i = 1 # create an interger \n",
32
+    "print(i)"
33
+   ]
34
+  },
35
+  {
36
+   "cell_type": "code",
37
+   "execution_count": 10,
38
+   "metadata": {},
39
+   "outputs": [
40
+    {
41
+     "name": "stdout",
42
+     "output_type": "stream",
43
+     "text": [
44
+      "Hello\n"
45
+     ]
46
+    }
47
+   ],
48
+   "source": [
49
+    "s = \"Hello\" # create a string\n",
50
+    "print(s)"
51
+   ]
52
+  },
53
+  {
54
+   "cell_type": "code",
55
+   "execution_count": 11,
56
+   "metadata": {},
57
+   "outputs": [
58
+    {
59
+     "name": "stdout",
60
+     "output_type": "stream",
61
+     "text": [
62
+      "1.1\n"
63
+     ]
64
+    }
65
+   ],
66
+   "source": [
67
+    "f = 1.1 \n",
68
+    "print(f)"
69
+   ]
70
+  },
71
+  {
72
+   "cell_type": "markdown",
73
+   "metadata": {},
74
+   "source": [
75
+    "<a href=\"http://localhost:8888/notebooks/03.Maths.ipynb\">Previous maths</a> \n",
76
+    "<a style=\"float:right;margin-right:10em;\" href=\"http://localhost:8888/notebooks/05.input.ipynb\">Next input</a> "
77
+   ]
78
+  }
79
+ ],
80
+ "metadata": {
81
+  "kernelspec": {
82
+   "display_name": "Python 3",
83
+   "language": "python",
84
+   "name": "python3"
85
+  },
86
+  "language_info": {
87
+   "codemirror_mode": {
88
+    "name": "ipython",
89
+    "version": 3
90
+   },
91
+   "file_extension": ".py",
92
+   "mimetype": "text/x-python",
93
+   "name": "python",
94
+   "nbconvert_exporter": "python",
95
+   "pygments_lexer": "ipython3",
96
+   "version": "3.7.0"
97
+  }
98
+ },
99
+ "nbformat": 4,
100
+ "nbformat_minor": 2
101
+}

Filskillnaden har hållts tillbaka eftersom den är för stor
+ 231 - 0
LICENSE


+ 33 - 0
README.md

@@ -0,0 +1,33 @@
1
+# An Introduction To Python
2
+
3
+## Install Python
4
+
5
+Follow the documentation here. https://www.python.org/downloads/
6
+Make sure you install python3.7 or greater.
7
+
8
+## Install pip
9
+
10
+If pip is not installed follow these instructions. https://pip.pypa.io/en/stable/installing/
11
+
12
+
13
+## Install Jupyter
14
+
15
+``` 
16
+python3 -m pip install --upgrade pip
17
+python3 -m pip install jupyter
18
+```
19
+Full instructions can be found here: http://jupyter.org/install
20
+
21
+## Download This Tutorial
22
+
23
+https://git.1248.nz/python/Introduction/archive/master.zip
24
+
25
+## Run Jupyter
26
+
27
+You can either use the ```run.bat``` for Windows or ```run.sh``` for Linux/Mac.  
28
+Or you can run 
29
+```
30
+jupyter notebook --NotebookApp.token=''
31
+```
32
+Then go to http://localhost:8888/notebooks/01.intro.ipynb in your browser.
33
+

+ 40 - 0
input.ipynb

@@ -0,0 +1,40 @@
1
+{
2
+ "cells": [
3
+  {
4
+   "cell_type": "markdown",
5
+   "metadata": {},
6
+   "source": [
7
+    "# Inputing data"
8
+   ]
9
+  },
10
+  {
11
+   "cell_type": "markdown",
12
+   "metadata": {},
13
+   "source": [
14
+    "<a href=\"http://localhost:8888/notebooks/04.variables.ipynb\">Previous variables</a> \n",
15
+    "<a style=\"float:right;margin-right:10em;\" href=\"http://localhost:8888/notebooks/06.if-statements.ipynb\">Next if statements</a> "
16
+   ]
17
+  }
18
+ ],
19
+ "metadata": {
20
+  "kernelspec": {
21
+   "display_name": "Python 3",
22
+   "language": "python",
23
+   "name": "python3"
24
+  },
25
+  "language_info": {
26
+   "codemirror_mode": {
27
+    "name": "ipython",
28
+    "version": 3
29
+   },
30
+   "file_extension": ".py",
31
+   "mimetype": "text/x-python",
32
+   "name": "python",
33
+   "nbconvert_exporter": "python",
34
+   "pygments_lexer": "ipython3",
35
+   "version": "3.7.0"
36
+  }
37
+ },
38
+ "nbformat": 4,
39
+ "nbformat_minor": 2
40
+}

+ 1 - 0
run.bat

@@ -0,0 +1 @@
1
+jupyter notebook --NotebookApp.token=''

+ 1 - 0
run.sh

@@ -0,0 +1 @@
1
+jupyter notebook --NotebookApp.token=''