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

bytearray.join(iterable) Return a bytes or bytearray object which is the concatenation of the binary data sequences in the

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

issuperset(other) set >= other Test whether every element in other is in the set.

2025-01-10 15:47:30