“Cómo ingresar un número y emitir el cuadrado de él en Python” Código de respuesta

Python Square un número

import math

8 * 8          # 64
8 ** 2.        # 64
math.pow(8, 2) # 64.0
Mattalui

Cómo ingresar un número y emitir el cuadrado de él en Python

 take the input as an integer and output a square of "*" characters.
Devni Charithma

Cómo ingresar un número y emitir el cuadrado de él en Python

val = int(input())
for x in range (0, val):
    print('*',end='')
Shehan Neranjan

Respuestas similares a “Cómo ingresar un número y emitir el cuadrado de él en Python”

Preguntas similares a “Cómo ingresar un número y emitir el cuadrado de él en Python”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código