by Ankit Sir
type(x) → Returns type of xint(x) → Converts to integerfloat(x) → Converts to floatstr(x) → Converts to stringbool(x) → Converts to True/Falselist(x) → Converts to listtuple(x) → Converts to tupleset(x) → Converts to setdict(x) → Converts to dictionarycomplex(a, b) → Creates a complex number a + bjabs(x) → Absolute valueround(x, n) → Round to n decimalspow(x, y) → x**y (power)