abs(x) # Absolute value
all(iterable) # True if all elements are truthy
any(iterable) # True if any element is truthy
bin(x) # Binary string representation
bool(x) # Convert to boolean
chr(i) # Unicode character from integer
dict(**kwargs) # Create dictionary
dir([obj]) # List names in current/local scope
enumerate(iter) # Returns (index, value) pairs
eval(expr) # Evaluate string as Python expression
filter(func, it) # Filter iterable with function
float(x) # Convert to float
format(val, spec) # Format value with specification
frozenset(it) # Create immutable set
getattr(obj, name)# Get attribute by name
globals() # Global symbol table as dict
hasattr(obj, n) # Check if attribute exists
hash(obj) # Hash value of object
help([obj]) # Interactive help
hex(x) # Hex string representation
id(obj) # Unique identifier
input([prompt]) # Read user input
int(x) # Convert to integer
isinstance(o, t) # Type checking
iter(obj) # Get iterator
len(s) # Length of sequence
list([iter]) # Create list
locals() # Local symbol table as dict
map(func, *iter) # Apply function to iterables
max(iterable) # Maximum value
min(iterable) # Minimum value
next(iterator) # Next item from iterator
oct(x) # Octal string representation
open(file, mode) # Open file
ord(c) # Unicode code point
pow(x, y) # x**y
print(*obj) # Print objects
range(start,stop) # Generate integer range
repr(obj) # String representation for devs
reversed(seq) # Reverse iterator
round(x, n) # Round to n decimal places
set([iter]) # Create set
slice(start,stop) # Create slice object
sorted(iter) # Return sorted list
str(obj) # String representation
sum(iterable) # Sum of elements
super() # Access parent class
tuple([iter]) # Create tuple
type(obj) # Get type of object
vars([obj]) # __dict__ of object
zip(*iterables) # Aggregate elements from iterables
Exercise: Use this reference sheet to solve a real problem: load a dataset using Pandas, filter and group it, create two subplot visualizations, run a statistical test using SciPy, and save the results. Refer back to the function signatures above as needed.