Skip to content
Snippets Groups Projects
Commit d5d75669 authored by Velaga Abijith's avatar Velaga Abijith
Browse files

q6 done

parent 0dfd1c3e
No related branches found
No related tags found
No related merge requests found
def maxlength(a):
max=0
for i in a:
l=len(i)
if l>max:
max=l
s1=i
return s1
s=[str(x) for x in input().split() ]
print(maxlength(s))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment