String Methods

 0    48 cartonașe    sir
descarcă mp3 printează joacă Testează-te
 
Întrebare Răspuns
Capitalizes first letter of string
începe să înveți
capitalize()
Returns a string padded with fillchar with the original string CENTERED to a total of width columns.
începe să înveți
center(width, fillchar)
Counts how many times str occurs in string or in a substring of string if starting index beg and ending index end are given.
începe să înveți
count(str, beg = 0, end = len(string))
Decodes the string using the codec registered for encoding. encoding defaults to the default string encoding.
începe să înveți
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'.
începe să înveți
encode(encoding = 'UTF-8', errors = 'strict')
Expands tabs in string to multiple spaces
defaults to 8 spaces per tab if tabsize not provided.
începe să înveți
expandtabs(tabsize = 8)
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.
începe să înveți
find(str, beg = 0 end = len(string))
Same as find(), but raises an exception if str not found.
începe să înveți
index(str, beg = 0, end = len(string))
Returns true if string has at least 1 character and all characters are alphanumeric and false otherwise.
începe să înveți
isalnum()
Returns true if string has at least 1 character and all characters are alphabetic and false otherwise.
începe să înveți
isalpha()
Returns true if string contains only digits and false otherwise.
începe să înveți
isdigit()
Returns true if string has at least 1 cased character and all cased characters are in lowercase and false otherwise.
începe să înveți
islower()
Returns true if a unicode string contains only numeric characters and false otherwise.
începe să înveți
isnumeric()
Returns true if string contains only whitespace characters and false otherwise.
începe să înveți
isspace()
Returns true if string is properly "titlecased" and false otherwise.
începe să înveți
istitle()
Returns true if string has at least one cased character and all cased characters are in uppercase and false otherwise.
începe să înveți
isupper()
Merges (concatenates) the string representations of elements in sequence seq into a string, with separator string.
începe să înveți
join(seq)
Returns the length of the string
începe să înveți
len(string)
Returns a space-padded string with the original string left-justified to a total of width columns.
începe să înveți
ljust(width[, fillchar])
Converts all uppercase letters in string to lowercase.
începe să înveți
lower()
Removes all leading whitespace in string.
începe să înveți
lstrip()
Returns a translation table to be used in translate function.
începe să înveți
maketrans()
Returns the max alphabetical character from the string str.
începe să înveți
max(str)
Returns the min alphabetical character from the string str.
începe să înveți
min(str)
Replaces all occurrences of old in string with new or at most max occurrences if max given.
începe să înveți
replace(old, new [, max])
Same as find(), but search backwards in string.
începe să înveți
rfind(str, beg = 0, end = len(string))
Same as index(), but search backwards in string.
începe să înveți
rindex(str, beg = 0, end = len(string))
Returns a space-padded string with the original string right-justified to a total of width columns.
începe să înveți
rjust(width,[, fillchar])
Removes all trailing whitespace of string.
începe să înveți
rstrip()
Splits string according to delimiter str (space if not provided) and returns list of substrings
începe să înveți
split(str="", num=string. count(str))
split into at most num substrings if given.
Splits string at all (or num) NEWLINEs and returns a list of each line with NEWLINEs removed.
începe să înveți
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
returns true if so and false otherwise.
începe să înveți
startswith(str, beg=0, end=len(string))
Performs both lstrip() and rstrip() on string
începe să înveți
strip([chars])
Inverts case for all letters in string.
începe să înveți
swapcase()
Returns "titlecased" version of string, that is, all words begin with uppercase and the rest are lowercase.
începe să înveți
title()
Translates string according to translation table str(256 chars), removing those in the del string.
începe să înveți
translate(table, deletechars="")
Converts lowercase letters in string to uppercase.
începe să înveți
upper()
Returns original string leftpadded with zeros to a total of width characters
intended for numbers, it retains any sign given (less one zero).
începe să înveți
zfill (width)
Returns true if a unicode string contains only decimal characters and false otherwise.
începe să înveți
isdecimal()
Converts string into lower case
începe să înveți
casefold()
Returns True if the string is an identifier
începe să înveți
isidentifier()
Returns a tuple where the string is parted into three parts
începe să înveți
partition()
Splits the string at the specified separator, and returns a list
începe să înveți
rsplit()
Splits the string at the specified separator, and returns a list
începe să înveți
rsplit()
Returns a tuple where the string is parted into three parts
începe să înveți
partition()
Returns a tuple where the string is parted into three parts
începe să înveți
rpartition()
Removes prefix.
începe să înveți
. removeprefix()
Removes suffix.
începe să înveți
. removesuffix()

Trebuie să te autentifici pentru a posta un comentariu.