Forum >> Principianti >> Chiusura programma in Python

Pagina: 1

Mi sono da poco avvicinato a Python, e dopo aver usato la IDLE per le prime esperienze ho deciso di creare un file semplice .py:
import math

def area_cerchio(r):
    area= math.pi*(r**2)
    return area

area =area_cerchio(2)
print (area)


Il problema è che non riesco a vedere il risultato, in quanto il prompt dei comandi si chiude in meno di un secondo. Come posso impedirlo?
Sebastiano Grassi said @ 2015-03-29 11:41:44:
Per esempio con:
import math, sys

def area_cerchio(r):
    area= math.pi*(r**2)
    return area

area =area_cerchio(2)
print (area)
sys.stdin.readline ()
THE 🍺-WARE LICENSE (Revision ㊷):
<㎝🐌🐍.🇮🇹> wrote this post. As long as you retain this notice you
can do whatever you want with this stuff. If we meet some day, and you
think this stuff is worth it, you can buy me a 🍺 in return. -- ㎝
Sebastiano Grassi said @ 2015-03-29 11:41:44:
Per esempio con:
import math, sys

def area_cerchio(r):
    area= math.pi*(r**2)
    return area

area =area_cerchio(2)
print (area)
sys.stdin.readline ()
Ha funzionato, grazie! Posso anche trasformarlo in .exe per non permettere la chiusura?


Pagina: 1



Esegui il login per scrivere una risposta.