Python Forum

Full Version: longest english word with unque letters
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Longest German word LibreOffice knows:

In [21]: lines_dic[18:20]                                                                                                                     
Out[21]: ['Äbte/Nm', 'Äbtissin/Fm']

In [22]: lines = [e.partition('/')[0] for e in lines_dic[18:]]                                                                                

In [23]: lines[0:5]                                                                                                                           
Out[23]: ['Äbte', 'Äbtissin', 'Äbtissinnenliste', 'Äbtissinnenstäbe', 'Äbtissinnenstab']

In [24]: max(lines, key=len)                                                                                                                  
Out[24]: 'Grundstücksverkehrsgenehmigungszuständigkeitsübertragungsverordnung'
Source is https://extensions.libreoffice.org/exten...ctionaries

If you want, you can construct longer words in German. It's possible.
but, what's the longest isogram in German, counting 'ü' != 'u'?
Pages: 1 2