11# Fun with Python 3
22
3- A hands on tutorial intented towards learning Python3 by solving problems.
3+ A hands- on tutorial intended for learning Python3 by solving problems.
44
55## 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. In 1991, [ Guido van
7+ Rossum] ( https://en.wikipedia.org/wiki/Guido_van_Rossum ) made Python. It's code is open source and
8+ all development happens on [ GitHub] ( https://github.com/python/cpython ) .
89
9- Source code url of Python: https://github.com/python/cpython
10+ Source code URL of Python: https://github.com/python/cpython
1011
11- Github also provides a nice feature to show the contributors of any project.
12+ Github also provides a nice feature to show the contributors to any project.
1213
1314Let's write a program to show
14- * Top 10 contributors of cpython project with their names
15+ * Top 10 contributors of CPython project with their names
1516* Numbers of commits made by the contributors
16- * Find list of contributors having same number of commits
17+ * Find list of contributors having the same number of commits
1718
1819## Let's Solve it
1920
2021### Prerequisites
2122
22- Make sure you have Python3.7 is installed.
23+ Make sure you have [ Python3] ( https://www.python.org/downloads/ ) is installed.
2324Check by typing python3 in terminal.
2425```
2526[chandankumar@ironman ~]$ python3
2627Python 3.7.2 (default, Mar 21 2019, 10:09:12)
2728[GCC 8.3.1 20190223 (Red Hat 8.3.1-2)] on linux
2829Type "help", "copyright", "credits" or "license" for more information.
29- >>>
30+ >>>
3031```
3132
3233If not then follow this link to install Python:
@@ -35,5 +36,5 @@ https://www.python.org/downloads/
3536### Follow these next steps to learn Python and then solve it
3637
3738* [ Begin your Python Journey] ( beginning.md )
38- * [ Have fun with Python Data Structures] ( datat_structures .md)
39- * [ Interact with files and Modules] ( file_and_modules.md )
39+ * [ Have fun with Python Data Structures] ( data_structures .md)
40+ * [ Interact with files and Modules] ( file_and_modules.md )
0 commit comments