range
  • References/Python/Python/Built-in Types

class range(stop) class range(start, stop[, step]) The arguments to the range constructor must be integers (either

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

class str(object='') class str(object=b'', encoding='utf-8', errors='strict') Return a string version

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

items() Return a new view of the dictionary’s items ((key, value) pairs). See the documentation of view objects

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

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

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

discard(elem) Remove element elem from the set if it is present.

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

float.hex() Return a representation of a floating-point number as a hexadecimal string. For finite floating-point numbers, this

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

pop() Remove and return an arbitrary element from the set. Raises

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

class dict(**kwarg) class dict(mapping, **kwarg) class dict(iterable, **kwarg) Return

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

clear() Remove all elements from the set.

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

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

2025-01-10 15:47:30