import math num_steps = int(math.log2(128)) print( f"A binary search would take maximum {num_steps} steps " "to search a list of 128 items." )