splitlines(num=string.count('\n'))
splitlines is a string helper. You call it on text like "Asha" or "banana". It gives a new string (or a number/True-False). The old string does not change unless you assign the result back.
splitlines(num=string.count('\n')) — output: ['Asha', 'Pune'].
Fresher trap: writing s.splitlines() and expecting s to update. Strings are immutable. Write s = s.splitlines(...) if you need the new value (when it returns a string).
Call splitlines on one real word and say what prints.