#!/usr/bin/env pythondeftitle_capital(s):words=s.split()arr=[]forwordinwords:iflen(word)<3:arr.append(word.lower())else:arr.append(word.capitalize())return' '.join(arr)print(title_capital('PERL IS gREAT'))print(title_capital('THE weekly challenge'))print(title_capital('YoU ARE A stAR'))