Envoyé par mont29
Voir le message
Envoyé par fred
Voir le message
#! /usr/bin/python from string import ascii_uppercase A = int(input("\tEnter the second number (A):\n\t")) B = int(input("\tEnter the first number (B):\n\t")) off = ord('A') while True: #print(off) print(chr(((A-B) % 26) + off - 1)) B = A A = int(input("\tEnter the next number:\n\t"))
def mafonction(arg1, arg2): pass
i=1 A = sys.argv[i+1] B = sys.argv[i] off = ord('A') while "tant qu'il y a des arguments": #print(off) print(chr(((A-B) % 26) + off - 1)) B = A #incrémentation de i A = sys.argv[i+1]
import sys lst = ["12", "2", "3", "4", "24", ] def walkList(lst, offset=1): length = len(lst) for i, elt in enumerate(lst): if (i<length-1 and i>=offset): print(chr(((int(lst[i])-int(lst[i+1])) % 26) + 65)) walkList(lst,0) #K Z Z G walkList(sys.argv)
#! /usr/bin/python import sys from string import ascii_uppercase i=1 A = int(sys.argv[i+1]) B = int(sys.argv[i]) off = ord('A') while True: #print(off) print(chr(((A-B) % 26) + off - 1)) B = A i=i+1 A = int(sys.argv[i+1])
i=1 A = entier(sys.argv[i+1]) #car c'est encore une chaine B = entier(sys.argv[i]) #car c'est encore une chaineoff = ord('A') while "tant qu'il y a des arguments": #print(off) print(chr(((A-B) % 26) + off -1)) #je suppose que les valeurs sont 1,2...26 (vous y tenez vraiment mais pourquoi?) B = A #incrémentation de i A = entier(sys.argv[i+1]) #car c'est encore une chaine
Commentaire