minValue = min(2, 1, 3)# minValue is 1lst = [2, 1, 3]maxValue = max(lst)# maxValue is 3print(f"{minValue = }")print(f"{maxValue = }")