Tag: python

  • Python Methods

    print() – prints whatever is inside the parentheses. .title() – changes each word to title case. .upper() – changes string to all uppercase. .lower() – changes string to all lowercase. \t – adds tab to text. \n – adds a new line to text. .rstrip() – removes white space to right of string. .lstrip() –…