I'm trying to understand what string.strip() in python is doing:
In [35]: t1 = '-MIN-North'
In [36]: t1.strip('-MIN-')
Out[36]: 'orth'
In [37]: t2 = '-MIN-north'
In [38]: t2.strip('-MIN-')
Out[38]: 'north'
Why is t1.strip('-MIN-')
not equal to 'North'
but t2.strip('-MIN-')
equal to 'north'
?