In this program, we will take a string as input and find the longest capital letter word from the string
Steps to solve the program
- Take a string as input.
- Import re library to find the all capital letter words.
- Find the longest capital letter word from the string using max(),
- Print the output.
#Importing re
import re
#Input string
string="Learning PYTHON programming is FUN"
#Finding all capital letters words
word = re.findall(r"[A-Z]+", string)
#Printing output
print(max(word, key=len))
Output :
PYTHON