Skip to content

Commit f22ea47

Browse files
fix: Colab link
1 parent ce45317 commit f22ea47

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Introduction to Python
2-
This is a collection of Jupyter notebooks that is intended to provide an introduction to the Python programming language. Although this collection is intended for beginner data science students, I found it very useful for any beginner in python programming. All notebooks were developed and released by [IBM Cognitive Class](https://cognitiveclass.ai/), available in this repository with a custom organization and some minor changes.
2+
This is a collection of Jupyter notebooks that is intended to provide an introduction to the Python programming language. Although this collection is aimed to the beginner data science student, I found it very useful for any beginner in python programming. All notebooks were developed and released by [IBM Cognitive Class](https://cognitiveclass.ai/), with some minors changes, organization and customizations provided by me.
33

44
## Notebooks
55

@@ -12,7 +12,7 @@ This section covers the python basics: print, import, types, expressions and str
1212

1313
| Lesson | Estimated time needed | Source Code | Colab |
1414
| ------------- |:---------------------:| :-----------:| -----:|
15-
| Your first program | 10 min | [Open](https://github.com/computationalcore/introduction-to-python/blob/master/notebooks/1-basics/PY0101EN-1-1-Hello.ipynb) | [Open](https://colab.research.google.com/github/computationalcore/introduction-to-python/blob/master/notebooks/1-basics/PY0101EN-1-1-Hello.ipynbDemo) |
15+
| Your first program | 10 min | [Open](https://github.com/computationalcore/introduction-to-python/blob/master/notebooks/1-basics/PY0101EN-1-1-Hello.ipynb) | [Open](https://colab.research.google.com/github/computationalcore/introduction-to-python/blob/master/notebooks/1-basics/PY0101EN-1-1-Hello.ipynb) |
1616
| Types | 10 min | [Open](https://github.com/computationalcore/introduction-to-python/blob/master/notebooks/1-basics/PY0101EN-1-2-Types.ipynb) | [Open](https://colab.research.google.com/github/computationalcore/introduction-to-python/blob/master/notebooks/1-basics/PY0101EN-1-2-Types.ipynb) |
1717
| Expressions and Variables | 10 min | [Open](https://github.com/computationalcore/introduction-to-python/blob/master/notebooks/1-basics/PY0101EN-1-3-Expressions.ipynb) | [Open](https://colab.research.google.com/github/computationalcore/introduction-to-python/blob/master/notebooks/1-basics/PY0101EN-1-3-Expressions.ipynb) |
1818
| String Operations | 15 min | [Open](https://github.com/computationalcore/introduction-to-python/blob/master/notebooks/1-basics/PY0101EN-1-4-Strings.ipynb) | [Open](https://colab.research.google.com/github/computationalcore/introduction-to-python/blob/master/notebooks/1-basics/PY0101EN-1-4-Strings.ipynb) |
@@ -39,7 +39,7 @@ This section covers the fundamentals of Python language, logic and control struc
3939
| Conditions and Branching | 20 min | [Open](https://github.com/computationalcore/introduction-to-python/blob/master/notebooks/3-fundamentals/PY0101EN-3-1-Conditions.ipynb) | [Open](https://colab.research.google.com/github/computationalcore/introduction-to-python/blob/master/notebooks/3-fundamentals/PY0101EN-3-1-Conditions.ipynb) |
4040
| Loops | 20 min | [Open](https://github.com/computationalcore/introduction-to-python/blob/master/notebooks/3-fundamentals/PY0101EN-3-2-Loops.ipynb) | [Open](https://colab.research.google.com/github/computationalcore/introduction-to-python/blob/master/notebooks/3-fundamentals/PY0101EN-3-2-Loops.ipynb) |
4141
| Functions | 40 min | [Open](https://github.com/computationalcore/introduction-to-python/blob/master/notebooks/3-fundamentals/PY0101EN-3-3-Functions.ipynb) | [Open](https://colab.research.google.com/github/computationalcore/introduction-to-python/blob/master/notebooks/3-fundamentals/PY0101EN-3-3-Functions.ipynb) |
42-
| Objects and Classes | 40 min | [Open](https://github.com/computationalcore/introduction-to-python/blob/master/notebooks/3-fundamentals/PY0101EN-3-4-Classes.ipynb) | [Open](https://colab.research.google.com/github/computationalcore/introduction-to-python/blob/master/notebooks/3-fundamentals/PY0101EN-3-4-Classes.ipynb) |
42+
| Classes and Objects | 40 min | [Open](https://github.com/computationalcore/introduction-to-python/blob/master/notebooks/3-fundamentals/PY0101EN-3-4-Classes.ipynb) | [Open](https://colab.research.google.com/github/computationalcore/introduction-to-python/blob/master/notebooks/3-fundamentals/PY0101EN-3-4-Classes.ipynb) |
4343
| **Total** | **120 min** | | |
4444

4545
### Files
@@ -64,12 +64,12 @@ This section covers an introduction to [pandas](https://pandas.pydata.org/), an
6464
### NumPy
6565
This section covers an introduction to [NumPy](https://numpy.org/), the fundamental package for scientific computing with Python.
6666

67-
Numpy makes it easier to do many operations that are commonly performed in data science. The same operations are usually computationally faster and require less memory in NumPy compared to regular Python.
67+
NumPy makes it easier to do many operations that are commonly performed in data science. The same operations are usually computationally faster and require less memory in NumPy compared to regular Python.
6868

6969
| Lesson | Estimated time needed | Source Code | Colab |
7070
| ------------- |:---------------------:| :-----------:| -----:|
71-
| 1D Numpy in Python | 30 min | [Open](https://github.com/computationalcore/introduction-to-python/blob/master/notebooks/6-numpy/PY0101EN-6-1-Numpy1D.ipynb) | [Open](https://colab.research.google.com/github/computationalcore/introduction-to-python/blob/master/notebooks/6-numpy/PY0101EN-6-1-Numpy1D.ipynb) |
72-
| 2D Numpy in Python | 20 min | [Open](https://github.com/computationalcore/introduction-to-python/blob/master/notebooks/6-numpy/PY0101EN-6-2-Numpy2D.ipynb) | [Open](https://colab.research.google.com/github/computationalcore/introduction-to-python/blob/master/notebooks/6-numpy/PY0101EN-6-2-Numpy2D.ipynb) |
71+
| 1D NumPy in Python | 30 min | [Open](https://github.com/computationalcore/introduction-to-python/blob/master/notebooks/6-numpy/PY0101EN-6-1-Numpy1D.ipynb) | [Open](https://colab.research.google.com/github/computationalcore/introduction-to-python/blob/master/notebooks/6-numpy/PY0101EN-6-1-Numpy1D.ipynb) |
72+
| 2D NumPy in Python | 20 min | [Open](https://github.com/computationalcore/introduction-to-python/blob/master/notebooks/6-numpy/PY0101EN-6-2-Numpy2D.ipynb) | [Open](https://colab.research.google.com/github/computationalcore/introduction-to-python/blob/master/notebooks/6-numpy/PY0101EN-6-2-Numpy2D.ipynb) |
7373
| **Total** | **50 min** | | |
7474

7575
## License

0 commit comments

Comments
 (0)