👤

Sagot :

Bonjour,

Je suis en 3ème et j'ai appris tout seul donc peut-être que ça peut s'améliorer. Après ma fonction marche. Et puis je sais pas en quel langage il fallait le faire alors je l'ai fait en python.

def decaler(lettre, rang):

   alphabet = 'abcdefghijklmnopqrstuvwxyz'

   if lettre in alphabet:

       if alphabet.index(lettre) + rang > len(alphabet):

           while alphabet.index(lettre) + rang > len(alphabet):

               rang -= len(alphabet)

       print(alphabet[alphabet.index(lettre) + rang])

   else:

       print(lettre)

© 2024 IDNLearn. All rights reserved.