feat: Initial commit

This commit is contained in:
2024-03-22 17:01:42 +01:00
parent 954985f39a
commit c343ff6e93
106 changed files with 143428 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
eccezioni = ["Belize", "Cambodge", "Mexique", "Mozambique", "Zaïre", "Zimbabwe"]
def main():
nazione = input("Nome nazione")
if nazione == "Etats-Unis" or nazione == "Pays-Bas":
print("les", nazione)
return
if nazione[0].lower() in "aeiou":
print("l'", nazione)
return
if nazione in eccezioni or nazione[-1] != "e":
print("le", nazione)
else:
print("la", nazione)
main()