Syntax - Tom Kleen

Returns True if all of the characters in s are lower case, False otherwise. s.isupper() Returns True if all of the characters in s are upper case, False otherwise. Trimming. s.lstrip([chars]) Returns a copy of s with whitespace (or chars) removed from the left of s. s.rstrip([chars]) Returns a copy of s with whitespace (or chars) removed from ... ................
................