ascii()
  • References/Python/Python/Built-in Functions

ascii(object) As repr(), return a string containing a printable representation of an object, but escape the non-ASCII

2025-01-10 15:47:30
len()
  • References/Python/Python/Built-in Functions

len(s) Return the length (the number of items) of an object. The argument may be a sequence (such as a string, bytes, tuple

2025-01-10 15:47:30
bool
  • References/Python/Python/Built-in Functions

class bool([x]) Return a Boolean value, i.e. one of True or False. x is converted using the

2025-01-10 15:47:30
bytes
  • References/Python/Python/Built-in Functions

class bytes([source[, encoding[, errors]]]) Return a new “bytes” object, which is an immutable sequence of integers in the range

2025-01-10 15:47:30
abs()
  • References/Python/Python/Built-in Functions

abs(x) Return the absolute value of a number. The argument may be an integer or a floating point number. If the argument is

2025-01-10 15:47:30
bin()
  • References/Python/Python/Built-in Functions

bin(x) Convert an integer number to a binary string. The result is a valid Python expression. If x is not a Python

2025-01-10 15:47:30
globals()
  • References/Python/Python/Built-in Functions

globals() Return a dictionary representing the current global symbol table. This is always the dictionary of the current module

2025-01-10 15:47:30
format()
  • References/Python/Python/Built-in Functions

format(value[, format_spec]) Convert a value to a “formatted” representation, as controlled by format_spec

2025-01-10 15:47:30
print()
  • References/Python/Python/Built-in Functions

print(*objects, sep=' ', end='\n', file=sys.stdout, flush=False) Print objects to the text stream file, separated

2025-01-10 15:47:30
delattr()
  • References/Python/Python/Built-in Functions

delattr(object, name) This is a relative of setattr(). The arguments are an object and a string. The string must

2025-01-10 15:47:30