Skip to content

Commit 21b0562

Browse files
committed
Added initial README.md for the workshop
Signed-off-by: Chandan Kumar <raukadah@gmail.com>
0 parents  commit 21b0562

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

README.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Fun with Python 3
2+
3+
A hands on tutorial intented towards learning Python3 by solving problems.
4+
5+
## Problem Statement:
6+
Python Programming langauage is Open Source. It's code and all development
7+
happens on github.
8+
9+
Source code url of Python: https://github.com/python/cpython
10+
11+
Github also provides a nice feature to show the contributors of any project.
12+
13+
Let's write a program to show
14+
* the contributors of cpython project with their names
15+
* Numbers of commits made by the contributors
16+
* Find list of contributors having same number of commits
17+
18+
## Let's Solve it
19+
20+
### Prerequisites
21+
22+
Make sure you have Python3.7 is installed.
23+
Check by typing python3 in terminal.
24+
```
25+
[chandankumar@ironman ~]$ python3
26+
Python 3.7.2 (default, Mar 21 2019, 10:09:12)
27+
[GCC 8.3.1 20190223 (Red Hat 8.3.1-2)] on linux
28+
Type "help", "copyright", "credits" or "license" for more information.
29+
>>>
30+
```
31+
32+
If not then follow this link to install Python:
33+
https://www.python.org/downloads/
34+
35+
### Follow these next steps to learn Python and solve it

0 commit comments

Comments
 (0)