I hereby claim:
- I am gautamk on github.
- I am gautamk (https://keybase.io/gautamk) on keybase.
- I have a public key whose fingerprint is D4D5 FA08 BA6B 2E25 502C 7B4A E080 51F8 245D D05F
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| import glob | |
| for filename in glob.iglob("*.csv"): | |
| firstline = None | |
| rest = None | |
| with open(filename, 'r') as f: | |
| firstline = f.readline().lower() | |
| rest = f.read() | |
| with open(filename,'w') as f: | |
| f.writelines([firstline]) | |
| f.write(rest) |