Very easy to follow instructions.
Just a quick question: why do u use bow var name? As someone from outside CS, what does "bow" signify here?
Quick tip: space is default split character in python, so you can just use bowA = docA.split(). While bowA = docA.split(" ") is more precise, it is not easier to read.
Very easy to follow instructions.
Just a quick question: why do u use
bowvar name? As someone from outside CS, what does "bow" signify here?Quick tip:
spaceis default split character in python, so you can just usebowA = docA.split(). WhilebowA = docA.split(" ")is more precise, it is not easier to read.