max() is an inbuilt function in Python programming language that returns the highest alphabetical character in a string.
Syntax:
max(string)
Parameter:
max() method takes a string as a parameter
Return value:
Returns a character which is alphabetically the highest character in the string.
Below is the Python implementation of the method max()
Python
# python program to demonstrate the use of # max() function   # maximum alphabetical character in # "Lazyroar" string = "Lazyroar" print max(string)   # maximum alphabetical character in # "raj" string = "raj" print max(string) |
Output:
s r

… [Trackback]
[…] There you will find 89617 additional Information on that Topic: geeksforgeeks.org/python-string-max/ […]
… [Trackback]
[…] Information to that Topic: geeksforgeeks.org/python-string-max/ […]
… [Trackback]
[…] Information on that Topic: geeksforgeeks.org/python-string-max/ […]
… [Trackback]
[…] Find More on to that Topic: geeksforgeeks.org/python-string-max/ […]