str.isalnum()
  • References/Python/Python/Built-in Types

str.isalnum() Return true if all characters in the string are alphanumeric and there is at least one character, false otherwise

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

bytes.index(sub[, start[, end]]) bytearray.index(sub[, start[, end]]) Like find(), but raise

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

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

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

str.find(sub[, start[, end]]) Return the lowest index in the string where substring sub is found within the slice

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

bytes.capitalize() bytearray.capitalize() Return a copy of the sequence with each byte interpreted as an ASCII character

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

tolist() Return the data in the buffer as a list of elements.

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

str.rindex(sub[, start[, end]]) Like rfind() but raises

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

bytes.rstrip([chars]) bytearray.rstrip([chars]) Return a copy of the sequence with specified trailing bytes removed

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

cast(format[, shape]) Cast a memoryview to a new format or shape. shape defaults to [byte_length//new_itemsize]

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

bytes.isalpha() bytearray.isalpha() Return true if all bytes in the sequence are alphabetic ASCII characters and

2025-01-10 15:47:30