Namya Shahbigsmoke.hashnode.dev·Sep 13, 2022Python Built In Functionsabs() # Returns the absolute value of a number x = abs(-7.25) print(x) # OUTPUT # 7.25 all() # Returns True if all items in an iterable object are true mylist = [True, True, True] x = all(mylist) print(x) # OUTPUT # True any() # Retur...10 likes·57 readsPythonAdd a thoughtful commentNo comments yetBe the first to start the conversation.