Comment faire un programme de chiffrement dans Python
a = input("Text: ")
y = ""
z = int(input("Complexity (250 is recommended): "))
for i in range(0, len(a)):
y = y + (chr(ord(a[i]) + z))
print(y)
BamBoom