Simple types / Numbers / Mathematical operations

minValue = min(213)
# minValue is 1

lst = [213]
maxValue = max(lst)
# maxValue is 3

print(f"{minValue = }")
print(f"{maxValue = }")