1 2 3 4 5 6
def my_len(x): """Return the length of x using built-in len()""" return len(x) def greet(name): return f"Hello, {name}!"