Initial release

This commit is contained in:
Francois JUMELLE
2021-05-03 22:32:40 +02:00
commit 20526d93c8
928 changed files with 452368 additions and 0 deletions

7
Thor le narcissique.py Normal file
View File

@@ -0,0 +1,7 @@
liste_mots = open("liste_mots_francais.txt").read().splitlines()
count = 0
for mot in liste_mots:
if mot.count('t') == 1 and mot.count('h') == 1 and mot.count('o') == 1 and mot.count('r') == 1:
count += 1
print(count)