Words containing "the" substring: Difference between revisions

(→‎{{header|Raku}}: Add Python)
Line 307:
weatherstripping
</pre>
 
=={{header|Python}}==
Entered from a Posix shell:
 
<lang python>/Code$ python -c 'import sys
> for line in sys.stdin:
> if "the" in line and len(line.strip()) > 11:
> print(line.rstrip())
> ' < unixdict.txt
authenticate
chemotherapy
chrysanthemum
clothesbrush
clotheshorse
eratosthenes
featherbedding
featherbrain
featherweight
gaithersburg
hydrothermal
lighthearted
mathematician
neurasthenic
nevertheless
northeastern
northernmost
otherworldly
parasympathetic
physiotherapist
physiotherapy
psychotherapeutic
psychotherapist
psychotherapy
radiotherapy
southeastern
southernmost
theoretician
weatherbeaten
weatherproof
weatherstrip
weatherstripping
/Code$ </lang>
 
=={{header|Raku}}==
Anonymous user