[PIPython] Domanda
sam
python
Ven 19 Nov 2004 15:16:53 CET
At 16.10.2004 11:24, Beppe (beppemonticelli a aliceposta.it) wrote:
> n = input('Number ')
> if n < 0:
> print 'The absolute value of',n, 'is', -n
> else:
> print 'the absolute value of',n,'is'n
non hai rispettato l'indentazione, che in python e` fondamentale, non solo
'estetica' come nella maggior parte dei linguaggi.
inoltre vedo che alla riga sotto else manca la virgola dopo 'is'!
cosi`dovrebbe funzionare:
> if n < 0:
> print 'The absolute value of', n, 'is', -n
> else:
> print 'the absolute value of', n, 'is', n
raven
More information about the Python
mailing list