intermediatePython
intermediatePython copied to clipboard
[Reduce](https://book.pythontips.com/en/latest/map_filter.html#reduce) would read more clearly if the variables in the example explained themselves. After making use of the reduce method outlined in your docs, I ended up further researching the...
In the section: ```bash python -c "import csv,json;print json.dumps(list(csv.reader(open('csv_file.csv'))))" ``` I tried the code in the paragraph with both Python 2 and 3(with modification), sample: ```csv a,b,c,d,e 1,2,3,4,5 f,w,e,r,t `,1,2,3,4...
misspelled
misspelled
Under Reduce 1) changed the "list" name 2) changed a bit the algorithm to underline what is happening
Hi all, the last subclass "email_logit" in the decorator section didn't produce the right result. [decorator](https://github.com/yasoob/intermediatePython/blob/master/decorators.rst) Usage: ``` @email_logit def myfunc1(): pass ``` Output: ``` Traceback (most recent call last):...
Add small documentation for these two also.