Skip to content

Commit 8d6c19b

Browse files
committed
some small changes
Signed-off-by: Nikhil Dhandre <ndhandre@redhat.com>
1 parent 8ae32d6 commit 8d6c19b

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
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. It's code and all
7+
development happens on GitHub.
88

9-
Source code url of Python: https://github.com/python/cpython
9+
Source code URL of Python: https://github.com/python/cpython
1010

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.
1212

1313
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
1515
* 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
1717

1818
## Let's Solve it
1919

2020
### Prerequisites
2121

22-
Make sure you have Python3.7 is installed.
22+
Make sure you have [Python3](https://www.python.org/downloads/) is installed.
2323
Check by typing python3 in terminal.
2424
```
2525
[chandankumar@ironman ~]$ python3
2626
Python 3.7.2 (default, Mar 21 2019, 10:09:12)
2727
[GCC 8.3.1 20190223 (Red Hat 8.3.1-2)] on linux
2828
Type "help", "copyright", "credits" or "license" for more information.
29-
>>>
29+
>>>
3030
```
3131

3232
If not then follow this link to install Python:
@@ -36,4 +36,4 @@ https://www.python.org/downloads/
3636

3737
* [Begin your Python Journey](beginning.md)
3838
* [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

Comments
 (0)