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

bytearray.rfind(sub[, start[, end]]) Return the highest index in the sequence where the subsequence sub is found, such

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

bytearray.isalnum() Return true if all bytes in the sequence are alphabetical ASCII characters or ASCII decimal digits and the

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

str.rsplit(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.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
dict.keys()
  • References/Python/Python/Built-in Types

keys() Return a new view of the dictionary’s keys. See the documentation of view objects.

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