0
Good afternoon! I am learning Python in Windows environment and in an example my terminal does not show the desired result.
When I run the code through the terminal it opens another window asking for the radius (input). When I put any number it closes and does not report the result.
Code:
#! python
from math import pi
raio = input('Informe o raio: ')
print('A area do ciruculo eh ', pi * float(raio) ** 2)
replace image with code so we can replicate your example
– Lucas