Python Forum
longest english word with unque letters - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Forum & Off Topic (https://python-forum.io/forum-23.html)
+--- Forum: Bar (https://python-forum.io/forum-27.html)
+--- Thread: longest english word with unque letters (/thread-17611.html)

Pages: 1 2


RE: longest english word with unque letters - DeaD_EyE - Apr-25-2019

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/extensions/german-de-de-frami-dictionaries

If you want, you can construct longer words in German. It's possible.


RE: longest english word with unque letters - Skaperen - Apr-25-2019

but, what's the longest isogram in German, counting 'ü' != 'u'?