str

 

  • It is a iterable object
  •  

  • __add__
  • help(str)
  •  

  • __contains__
  • __eq__
  • __format__
  • __ge__
  • __getattribute__
  • __getitem__
  • __getnewargs__
  • __gt__
  • __hash__
  • __iter__
  • __le__
  • __len__
  • __lt__
  • __mod__
  • __mul__
  • __ne__
  • __new__
  • __repr__
  • __rmod__
  • __rmul__
  • __sizeof__
  • __str__
  •  

  • capitalize(...)
  •  

  • casefold(...)
  • center(...)
  • count(...)
  • encode(...)
  • endswith(...)
  • expandtabs(...)
  • find(...)
  • format(...)
  • format_map(...)
  • index(...)
  • isalnum(...)
  • isalpha(...)
  • isdecimal(...)
  • isdigit(...)
  • isidentifier(...)
  • islower(...)
  • isnumeric(...)
  • isprintable(...)
  • isspace(...)
  • istitle(...)
  • isupper(...)
  • join(...)
  • ljust(...)
  • lower(...)
  • lstrip(...)
  • partition(...)
  • replace(...)
  • rfind(...)
  • rindex(...)
  • rjust(...)
  • rpartition(...)
  • rsplit(...)
  • rstrip(...)
  • split(...)
  • splitlines(...)
  • startswith(...)
  • strip(...)
  • swapcase(...)
  • title(...)
  • translate(...)
  • upper(...)
  • zfill(...)
  • Find the Index and Count

     

     

    Find the Index of a letter in a string

     

     

    String Methods

     

     

     

    Loop through the string - based on its length

     

     

    Find the Index of substring in a string

     

     

    Split a string based on delimiter

     

     

     

    Split a string - store in List

     

     

    strip and rstrip Methods

     

     

    Number of times each charater Exists in a string

     

     

    Join Method

     

     

    String methods --- with tkinter