Apr-25-2019, 05:48 AM
Longest German word LibreOffice knows:
If you want, you can construct longer words in German. It's possible.
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.