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
bytes.translate()
  • References/Python/Python/Built-in Types

bytes.translate(table[, delete]) bytearray.translate(table[, delete]) Return a copy of the bytes or bytearray object

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

copy() Return a shallow copy of the dictionary.

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

bytes.rsplit(sep=None, maxsplit=-1) bytearray.rsplit(sep=None, maxsplit=-1) Split the binary sequence into subsequences

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

str.isidentifier() Return true if the string is a valid identifier according to the language definition, section Identifiers

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.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
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.format()
  • References/Python/Python/Built-in Types

str.format(*args, **kwargs) Perform a string formatting operation. The string on which this method is called can contain literal

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

issubset(other) set <= other Test whether every element in the set is in other.

2025-01-10 15:47:30