Generation

generate functionMon, 08 May 2023

ingresar una cadena y encriptarlo

def encrypt(string): string = string.replace('a', '0') string = string.replace('e', '1') string = string.replace('i', '2') string = string.replace('o', '3') string = string.replace('u', '4') return string encrypt("murcielago")

Want to kickstart your project?Use the new AI Studio to create your code