Until now we had done as of following code. We would create couples of more functions which would help us in managing our application. As discussed earlier we would now we creating different directories and files present …
Read more →Last time we had created cmd_init(args) function. We add more functionality to cmd_init(args).
This was our code till last time.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 import sys import argparse argparser = …
Read more →Second Try We would be trying to create a mini git clone from this tutorial. I aspect this to go long. In general git is awesome source code manager which is wieldy use.
So first we would be creating a lib file and …
Read more →Day 4 PS: These are notes, there could be grammar error and spelling errors.
for loops For loop over a list goes as follows:
1 2 3 4 5 6 7 8 >>> a = ['Fedora', 'is', 'powerful'] …
Read more →Day 3 PS: These are notes, there could be grammar error and spelling errors.
Last time we were just starting with If else, the control flow,
if-else , the control flow Control flow is used when we need to do some …
Read more →