dir can be used to list methods available on an
objectupper can be used to uppercase a stringlower can be used to lowercase itHow could we compare strings ignoring case?
find can be used to get the position of a
substringstrip returns a copy of the string with leading and
trailing whitespace removedstartswith will return True if the string begins with
the supplied prefixcount will count the number of non-overlapping
substrings in some text:) is used to separate the start and end
indexformat method on stringsformat method in this classf should be used before the opening quote of the
string literalCreate a program that will capitalize the first word in a provided sentence.
Create a program that will search a string for a word and display the word along with the 5 characters before and 5 characters after it.