1. Python Inbuilt Functions
Python abs()
Returns the absolute value of a integer, float; and magnitude of a complex number.
Python any() function
Checks if at least one element of the Iterable is True.
Python all()
Returns true when all the elements in the Iterable are True.
2. Python String Functions
Python String endswith()
Checks if String Ends with the Specified Suffix
Python String split()
Splits String from Left
Python String startswith()
Checks if String Starts with the Specified String
Leave a Reply