You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
a=open('file.txt','r')
k=a.readlines()
k=sorted(k,key=len)
print('length of characters of longest line:',len(k[-1][:-1]))
print('longest line is:',k[-1][:-1])
a=open('file.txt','r')
k=a.readlines()
k=sorted(k,key=len)
print('length of characters of longest line:',len(k[-1][:-1]))
print('longest line is:',k[-1][:-1])