Created
December 20, 2022 06:24
-
-
Save cargabsj175/0d5a00aaa8d4cda34f7d57b686b115a9 to your computer and use it in GitHub Desktop.
Crea una permuta de 4 caracteres en hexadecimal y lo vacia en un archivo de texto
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
listanumeros = [] | |
for i in range(10000): | |
nro4caracteres = "{0:04x}".format(i) #Convertimos el numero entero a cuatro caracteres en formato hexadecimal | |
listanumeros.append(nro4caracteres) | |
# Escribimos los números en formato hexadecimal en un archivo de txt. | |
with open("listanumeros.txt", "w") as file: #Abre el archivo con permisos de escritura | |
for numero in listanumeros: #Recorremos la lista de números para ir escribiendolos uno por uno al archivo txt. | |
file.write(str(numero) + "\n") #Escribimos el numero y agregamos un salto de línea |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment