open File
fhand = open('mbox.txt')
finding currrent working directory
os.getcwd()
Dictionary, counting how many times a key appears in a file
dict[key] = dict.get(key,0) +1
-> if get function does not work it adds 1 to 0. If key is present, add +1 to existing number
How tp
Last changeda day ago