Python_Built-InFunctionsPracticeProblemsSolutions
Python_Built-InFunctionsPracticeProblemsSolutions
"""
"""
# ----------------------------------------------------------------------------------------------------------------------
# 1.
print(abs(2))
# 2.
print(abs(-5))
# 3.
print(type(3.21))
# 4.
print(type(7))
# 5.
print(type(False))
# 6.
print(type("string"))
# ----------------------------------------------------------------------------------------------------------------------
"""
"""
# ----------------------------------------------------------------------------------------------------------------------
# 1.
print(max(1, 3, 9))
# 2.
print(max("a", "c", "f"))
# 3.
print(min(3.9, 92.7, 1.3, 4.0))
# 4.
print(min("sdfjsdhfkh", "asdkuhkuh", "aaaaaaaaa"))
# ----------------------------------------------------------------------------------------------------------------------