1
1
# Fun with Python 3
2
2
3
- A hands on tutorial intented towards learning Python3 by solving problems.
3
+ A hands- on tutorial intended for learning Python3 by solving problems.
4
4
5
5
## Problem Statement:
6
- Python Programming langauage is Open Source . It's code and all development
7
- happens on github .
6
+ [ Python] ( https://www.python.org/ ) is an open source programming language . It's code and all
7
+ development happens on GitHub .
8
8
9
- Source code url of Python: https://github.com/python/cpython
9
+ Source code URL of Python: https://github.com/python/cpython
10
10
11
- Github also provides a nice feature to show the contributors of any project.
11
+ Github also provides a nice feature to show the contributors to any project.
12
12
13
13
Let's write a program to show
14
- * Top 10 contributors of cpython project with their names
14
+ * Top 10 contributors of CPython project with their names
15
15
* Numbers of commits made by the contributors
16
- * Find list of contributors having same number of commits
16
+ * Find list of contributors having the same number of commits
17
17
18
18
## Let's Solve it
19
19
20
20
### Prerequisites
21
21
22
- Make sure you have Python3.7 is installed.
22
+ Make sure you have [ Python3] ( https://www.python.org/downloads/ ) is installed.
23
23
Check by typing python3 in terminal.
24
24
```
25
25
[chandankumar@ironman ~]$ python3
26
26
Python 3.7.2 (default, Mar 21 2019, 10:09:12)
27
27
[GCC 8.3.1 20190223 (Red Hat 8.3.1-2)] on linux
28
28
Type "help", "copyright", "credits" or "license" for more information.
29
- >>>
29
+ >>>
30
30
```
31
31
32
32
If not then follow this link to install Python:
@@ -36,4 +36,4 @@ https://www.python.org/downloads/
36
36
37
37
* [ Begin your Python Journey] ( beginning.md )
38
38
* [ Have fun with Python Data Structures] ( datat_structures.md )
39
- * [ Interact with files and Modules] ( file_and_modules.md )
39
+ * [ Interact with files and Modules] ( file_and_modules.md )
0 commit comments