| Frage | Antworten | 
        
        |  Lernen beginnen Capitalizes first letter of string  |  |  |  |  | 
|  Lernen beginnen Returns a string padded with fillchar with the original string CENTERED to a total of width columns.  |  |  |  |  | 
|  Lernen beginnen Counts how many times str occurs in string or in a substring of string if starting index beg and ending index end are given.  |  |   count(str, beg = 0, end = len(string))  |  |  | 
|  Lernen beginnen Decodes the string using the codec registered for encoding. encoding defaults to the default string encoding.  |  |   decode(encoding = 'UTF-8', errors = 'strict')  |  |  | 
|   Returns encoded string version of string   on error, default is to raise a ValueError unless errors is given with 'ignore' or 'replace'.Lernen beginnen |  |   encode(encoding = 'UTF-8', errors = 'strict')  |  |  | 
|   Expands tabs in string to multiple spaces   defaults to 8 spaces per tab if tabsize not provided.Lernen beginnen |  |  |  |  | 
|  Lernen beginnen Determine if str occurs in string or in a substring of string if starting index beg and ending index end are given returns index if found and -1 otherwise.  |  |   find(str, beg = 0 end = len(string))  |  |  | 
|  Lernen beginnen Same as find(), but raises an exception if str not found.  |  |   index(str, beg = 0, end = len(string))  |  |  | 
|  Lernen beginnen Returns true if string has at least 1 character and all characters are alphanumeric and false otherwise.  |  |  |  |  | 
|  Lernen beginnen Returns true if string has at least 1 character and all characters are alphabetic and false otherwise.  |  |  |  |  | 
|  Lernen beginnen Returns true if string contains only digits and false otherwise.  |  |  |  |  | 
|  Lernen beginnen Returns true if string has at least 1 cased character and all cased characters are in lowercase and false otherwise.  |  |  |  |  | 
|  Lernen beginnen Returns true if a unicode string contains only numeric characters and false otherwise.  |  |  |  |  | 
|  Lernen beginnen Returns true if string contains only whitespace characters and false otherwise.  |  |  |  |  | 
|  Lernen beginnen Returns true if string is properly "titlecased" and false otherwise.  |  |  |  |  | 
|  Lernen beginnen Returns true if string has at least one cased character and all cased characters are in uppercase and false otherwise.  |  |  |  |  | 
|  Lernen beginnen Merges (concatenates) the string representations of elements in sequence seq into a string, with separator string.  |  |  |  |  | 
|  Lernen beginnen Returns the length of the string  |  |  |  |  | 
|  Lernen beginnen Returns a space-padded string with the original string left-justified to a total of width columns.  |  |  |  |  | 
|  Lernen beginnen Converts all uppercase letters in string to lowercase.  |  |  |  |  | 
|  Lernen beginnen Removes all leading whitespace in string.  |  |  |  |  | 
|  Lernen beginnen Returns a translation table to be used in translate function.  |  |  |  |  | 
|  Lernen beginnen Returns the max alphabetical character from the string str.  |  |  |  |  | 
|  Lernen beginnen Returns the min alphabetical character from the string str.  |  |  |  |  | 
|  Lernen beginnen Replaces all occurrences of old in string with new or at most max occurrences if max given.  |  |   replace(old, new [, max])  |  |  | 
|  Lernen beginnen Same as find(), but search backwards in string.  |  |   rfind(str, beg = 0, end = len(string))  |  |  | 
|  Lernen beginnen Same as index(), but search backwards in string.  |  |   rindex(str, beg = 0, end = len(string))  |  |  | 
|  Lernen beginnen Returns a space-padded string with the original string right-justified to a total of width columns.  |  |   rjust(width,[, fillchar])  |  |  | 
|  Lernen beginnen Removes all trailing whitespace of string.  |  |  |  |  | 
|  Lernen beginnen Splits string according to delimiter str (space if not provided) and returns list of substrings  |  |   split(str="", num=string. count(str))    split into at most num substrings if given. |  |  | 
|  Lernen beginnen Splits string at all (or num) NEWLINEs and returns a list of each line with NEWLINEs removed.  |  |   splitlines(num=string. count('\n'))  |  |  | 
|   Determines if string or a substring of string (if starting index beg and ending index end are given) starts with substring str   Lernen beginnen returns true if so and false otherwise. |  |   startswith(str, beg=0, end=len(string))  |  |  | 
|  Lernen beginnen Performs both lstrip() and rstrip() on string  |  |  |  |  | 
|  Lernen beginnen Inverts case for all letters in string.  |  |  |  |  | 
|  Lernen beginnen Returns "titlecased" version of string, that is, all words begin with uppercase and the rest are lowercase.  |  |  |  |  | 
|  Lernen beginnen Translates string according to translation table str(256 chars), removing those in the del string.  |  |   translate(table, deletechars="")  |  |  | 
|  Lernen beginnen Converts lowercase letters in string to uppercase.  |  |  |  |  | 
|   Returns original string leftpadded with zeros to a total of width characters   intended for numbers, it retains any sign given (less one zero).Lernen beginnen |  |  |  |  | 
|  Lernen beginnen Returns true if a unicode string contains only decimal characters and false otherwise.  |  |  |  |  | 
|  Lernen beginnen Converts string into lower case  |  |  |  |  | 
|  Lernen beginnen Returns True if the string is an identifier  |  |  |  |  | 
|  Lernen beginnen Returns a tuple where the string is parted into three parts  |  |  |  |  | 
|  Lernen beginnen Splits the string at the specified separator, and returns a list  |  |  |  |  | 
|  Lernen beginnen Splits the string at the specified separator, and returns a list  |  |  |  |  | 
|  Lernen beginnen Returns a tuple where the string is parted into three parts  |  |  |  |  | 
|  Lernen beginnen Returns a tuple where the string is parted into three parts  |  |  |  |  | 
| Lernen beginnen |  |  |  |  | 
| Lernen beginnen |  |  |  |  |