Skip to content

Commit

Permalink
Merge pull request mouredev#6020 from Roswell468/main
Browse files Browse the repository at this point in the history
Corrección de Nombres
  • Loading branch information
Roswell468 authored Dec 8, 2023
2 parents 9616c53 + 34e2f12 commit 2b7c7ce
Show file tree
Hide file tree
Showing 30 changed files with 127 additions and 158 deletions.
Original file line number Diff line number Diff line change
@@ -1,60 +1,60 @@

# Escribe un programa que reciba un texto y transforme lenguaje natural a
# "lenguaje hacker" (conocido realmente como "leet" o "1337"). Este lenguaje
# se caracteriza por sustituir caracteres alfanuméricos.
# Utiliza esta tabla (https://www.gamehouse.com/blog/leet-speak-cheat-sheet/)
# con el alfabeto y los números en "leet".
# (Usa la primera opción de cada transformación. Por ejemplo "4" para la "a")

leet = {
'a': '4',
'b': '8',
'c': '<',
'd': '|)',
'e': '3',
'f': '|=',
'g': '9',
'h': '#',
'i': '1',
'j': '_|',
'k': '|<',
'l': '1',
'm': '|\/|',
'n': '|\|',
'o': '0',
'p': '|>',
'q': '(_,)',
'r': '|2',
's': '5',
't': '7',
'u': '|_|',
'v': '\/',
'w': '\/\/',
'x': '><',
'y': '¥',
'z': '2',
'1': 'L',
'2': 'Z',
'3': 'E',
'4': 'A',
'5': 'S',
'6': 'b',
'7': 'T',
'8': 'B',
'9': 'g',
'0': 'O'
}

def text_to_leet(text):
result = ''
for char in text.lower():
if char in leet:
result += leet[char]
else:
result += char
return result

texto_original = input("Ingrese un texto: ")
texto_en_leet = text_to_leet(texto_original)
print("Texto transformado en leet:")
print(texto_en_leet)

# Escribe un programa que reciba un texto y transforme lenguaje natural a
# "lenguaje hacker" (conocido realmente como "leet" o "1337"). Este lenguaje
# se caracteriza por sustituir caracteres alfanuméricos.
# Utiliza esta tabla (https://www.gamehouse.com/blog/leet-speak-cheat-sheet/)
# con el alfabeto y los números en "leet".
# (Usa la primera opción de cada transformación. Por ejemplo "4" para la "a")

leet = {
'a': '4',
'b': '8',
'c': '<',
'd': '|)',
'e': '3',
'f': '|=',
'g': '9',
'h': '#',
'i': '1',
'j': '_|',
'k': '|<',
'l': '1',
'm': '|\/|',
'n': '|\|',
'o': '0',
'p': '|>',
'q': '(_,)',
'r': '|2',
's': '5',
't': '7',
'u': '|_|',
'v': '\/',
'w': '\/\/',
'x': '><',
'y': '¥',
'z': '2',
'1': 'L',
'2': 'Z',
'3': 'E',
'4': 'A',
'5': 'S',
'6': 'b',
'7': 'T',
'8': 'B',
'9': 'g',
'0': 'O'
}

def text_to_leet(text):
result = ''
for char in text.lower():
if char in leet:
result += leet[char]
else:
result += char
return result

texto_original = input("Ingrese un texto: ")
texto_en_leet = text_to_leet(texto_original)
print("Texto transformado en leet:")
print(texto_en_leet)
Original file line number Diff line number Diff line change
@@ -1,68 +1,68 @@

def cambiar_texto(texto):
i = 0
nuevo_texto = list(texto)
while i < len(texto):
if nuevo_texto[i] == 'A':
nuevo_texto[i] = '4'
if nuevo_texto[i] == 'B':
nuevo_texto[i] = 'I3'
if nuevo_texto[i] == 'C':
nuevo_texto[i] = '['
if nuevo_texto[i] == 'D':
nuevo_texto[i] = ')'
if nuevo_texto[i] == 'E':
nuevo_texto[i] = '3'
if nuevo_texto[i] == 'F':
nuevo_texto[i] = '|='
if nuevo_texto[i] == 'G':
nuevo_texto[i] = '&'
if nuevo_texto[i] == 'H':
nuevo_texto[i] = '#'
if nuevo_texto[i] == 'I':
nuevo_texto[i] = '1'
if nuevo_texto[i] == 'J':
nuevo_texto[i] = ',_|'
if nuevo_texto[i] == 'K':
nuevo_texto[i] = '>|'
if nuevo_texto[i] == 'L':
nuevo_texto[i] = '1'
if nuevo_texto[i] == 'M':
nuevo_texto[i] = '[V]'
if nuevo_texto[i] == 'N':
nuevo_texto[i] = '^/'
if nuevo_texto[i] == "O":
nuevo_texto[i] = '0'
if nuevo_texto[i] == 'P':
nuevo_texto[i] = '|*'
if nuevo_texto[i] == 'Q':
nuevo_texto[i] = '(_,)'
if nuevo_texto[i] == 'R':
nuevo_texto[i] = 'I2'
if nuevo_texto[i] == 'S':
nuevo_texto[i] = '5'
if nuevo_texto[i] == 'T':
nuevo_texto[i] = '7'
if nuevo_texto[i] == 'U':
nuevo_texto[i] = '(_)'
if nuevo_texto[i] == 'V':
nuevo_texto[i] = '\/'
if nuevo_texto[i] == 'W':
nuevo_texto[i] = '\/\/'
if nuevo_texto[i] == 'X':
nuevo_texto[i] = '><'
if nuevo_texto[i] == 'Y':
nuevo_texto[i] = 'j'
if nuevo_texto[i] == 'Z':
nuevo_texto[i] = '2'


i = i + 1

texto = "".join(nuevo_texto)
print("TEXTO TRANSFORMADO",texto)


texto = input('Escribe un texto\n')
texto = texto.upper()

def cambiar_texto(texto):
i = 0
nuevo_texto = list(texto)
while i < len(texto):
if nuevo_texto[i] == 'A':
nuevo_texto[i] = '4'
if nuevo_texto[i] == 'B':
nuevo_texto[i] = 'I3'
if nuevo_texto[i] == 'C':
nuevo_texto[i] = '['
if nuevo_texto[i] == 'D':
nuevo_texto[i] = ')'
if nuevo_texto[i] == 'E':
nuevo_texto[i] = '3'
if nuevo_texto[i] == 'F':
nuevo_texto[i] = '|='
if nuevo_texto[i] == 'G':
nuevo_texto[i] = '&'
if nuevo_texto[i] == 'H':
nuevo_texto[i] = '#'
if nuevo_texto[i] == 'I':
nuevo_texto[i] = '1'
if nuevo_texto[i] == 'J':
nuevo_texto[i] = ',_|'
if nuevo_texto[i] == 'K':
nuevo_texto[i] = '>|'
if nuevo_texto[i] == 'L':
nuevo_texto[i] = '1'
if nuevo_texto[i] == 'M':
nuevo_texto[i] = '[V]'
if nuevo_texto[i] == 'N':
nuevo_texto[i] = '^/'
if nuevo_texto[i] == "O":
nuevo_texto[i] = '0'
if nuevo_texto[i] == 'P':
nuevo_texto[i] = '|*'
if nuevo_texto[i] == 'Q':
nuevo_texto[i] = '(_,)'
if nuevo_texto[i] == 'R':
nuevo_texto[i] = 'I2'
if nuevo_texto[i] == 'S':
nuevo_texto[i] = '5'
if nuevo_texto[i] == 'T':
nuevo_texto[i] = '7'
if nuevo_texto[i] == 'U':
nuevo_texto[i] = '(_)'
if nuevo_texto[i] == 'V':
nuevo_texto[i] = '\/'
if nuevo_texto[i] == 'W':
nuevo_texto[i] = '\/\/'
if nuevo_texto[i] == 'X':
nuevo_texto[i] = '><'
if nuevo_texto[i] == 'Y':
nuevo_texto[i] = 'j'
if nuevo_texto[i] == 'Z':
nuevo_texto[i] = '2'


i = i + 1

texto = "".join(nuevo_texto)
print("TEXTO TRANSFORMADO",texto)


texto = input('Escribe un texto\n')
texto = texto.upper()
cambiar_texto(texto)

This file was deleted.

0 comments on commit 2b7c7ce

Please sign in to comment.