bytearray.ljust()
  • References/Python/Python/Built-in Types

bytearray.ljust(width[, fillbyte]) Return a copy of the object left justified in a sequence of length width. Padding

2025-01-10 15:47:30
str.rpartition()
  • References/Python/Python/Built-in Types

str.rpartition(sep) Split the string at the last occurrence of sep, and return a 3-tuple containing the part before

2025-01-10 15:47:30
bytes.swapcase()
  • References/Python/Python/Built-in Types

bytes.swapcase() bytearray.swapcase() Return a copy of the sequence with all the lowercase ASCII characters converted

2025-01-10 15:47:30
bytearray.count()
  • References/Python/Python/Built-in Types

bytearray.count(sub[, start[, end]]) Return the number of non-overlapping occurrences of subsequence sub in the range

2025-01-10 15:47:30
str.replace()
  • References/Python/Python/Built-in Types

str.replace(old, new[, count]) Return a copy of the string with all occurrences of substring old replaced by new

2025-01-10 15:47:30
set.union()
  • References/Python/Python/Built-in Types

union(other, ...) set | other | ... Return a new set with elements from the set and all others.

2025-01-10 15:47:30
str.islower()
  • References/Python/Python/Built-in Types

str.islower() Return true if all cased characters [4] in the string are lowercase and there is at least one cased character

2025-01-10 15:47:30
bytes.istitle()
  • References/Python/Python/Built-in Types

bytes.istitle() bytearray.istitle() Return true if the sequence is ASCII titlecase and the sequence is not empty

2025-01-10 15:47:30
str.join()
  • References/Python/Python/Built-in Types

str.join(iterable) Return a string which is the concatenation of the strings in the iterable

2025-01-10 15:47:30
str.split()
  • References/Python/Python/Built-in Types

str.split(sep=None, maxsplit=-1) Return a list of the words in the string, using sep as the delimiter string. If maxsplit

2025-01-10 15:47:30