Dado un número N, la tarea es escribir un programa en Python para imprimir el valor octal de los números del 1 al N.
Ejemplos:
Input: 3 Output: 1 2 3 Input: 11 Output: 1 2 3 4 5 6 7 10 11 12 13
Acercarse:
- Tomaremos el valor de N como entrada.
- Luego, ejecutaremos el ciclo for de 1 a N+1 y recorreremos cada función “ i ” a través de oct() .
- Imprime cada valor octal.
Nota: La función oct() es uno de los métodos incorporados en Python3. El método oct() toma un número entero y devuelve su representación octal en formato de string.
A continuación se muestran las implementaciones basadas en el enfoque anterior:
Python3
# Python program to print the octal value of the # numbers from 1 to N # Function to find the octal value of the numbers # in the range 1 to N def octal_in_range(n): # For loop traversing from 1 to N (Both Inclusive) for i in range(1, n+1): # Printing octal value of i print(oct(i)[2:]) # Calling the function with input 3 print("Input: 3") octal_in_range(3) # Calling the function with input 11 print("Input: 11") octal_in_range(11)
Producción:
Input: 3 1 2 3 Input: 11 1 2 3 4 5 6 7 10 11 12 13
Publicación traducida automáticamente
Artículo escrito por aditya_taparia y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA