Sullivan WxPyQtKinter:
>Why do the three expression yield the same result "abc"?
Because all three converted "ABC" to lowercase, as per your request.
--
René Pijlman
--
http://mail.python.org/mailman/listinfo/python-list
In python, these expression seems yields the same result:
inputstring='ABC'
print inputstring.lower()
print lower(inputstring)
print string.lower(inputstring)
result:
abc
abc
abc
Question:
Is the method lower() just a method for the inputstring instance( an
instrance object of a string class ob