Python Forum
longest english word with unque letters
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
longest english word with unque letters
#11
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.
Almost dead, but too lazy to die: https://sourceserver.info
All humans together. We don't need politicians!
Reply
#12
but, what's the longest isogram in German, counting 'ü' != 'u'?
Tradition is peer pressure from dead people

What do you call someone who speaks three languages? Trilingual. Two languages? Bilingual. One language? American.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Looking for an english word Gribouillis 4 2,996 Nov-06-2018, 05:46 AM
Last Post: pcsailor
  Funny English Kebap 41 23,908 Feb-10-2018, 02:06 AM
Last Post: Skaperen

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020