Forum
>>
Principianti
>>
aiuto sono un principiante
Pagina: 1
Esegui il login per scrivere una risposta.
Pagina: 1
Scritto da FabioSessa |
2017-03-27 17:28:57 - aiuto sono un principiante
|
def getwidth(tree): if tree.tb==None and tree.fb==None: return 1 return getwidth(tree.tb)+getwidth(tree.fb) def getdepth(tree): if tree.tb==None and tree.fb==None: return 0 return max(getdepth(tree.tb),getdepth(tree.fb))+1 from PIL import Image,ImageDraw ragazzi scusate, vorrei un aiuto, se possibile, come mai se scrivo questo codice i da:
sintax error sul secondo def? la mia versione è 3.4.2 su linux e il codice mi è stato dato in dotazione dal prof e molto probabilmente è obsoleto. grazie a chi risponderà --- Ultima modifica di ㎝ in data 2017-03-27 17:33:22 --- |
|
Scritto da ㎝ |
2017-03-27 17:37:02 - Re: aiuto sono un principiante
|
A me funziona...
>>> def getwidth(tree): ... if tree.tb==None and tree.fb==None: return 1 ... return getwidth(tree.tb)+getwidth(tree.fb) ... >>> def getdepth(tree): ... if tree.tb==None and tree.fb==None: return 0 ... return max(getdepth(tree.tb),getdepth(tree.fb))+1 ... >>> 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. -- ㎝ |
|
Scritto da FabioSessa |
2017-03-27 17:50:35 - Re: aiuto sono un principiante
|
male allora . non capisco come mai a me non funziona . Sapresti aiutarmi , o meglio consigliarmi su come risolvere ?
|
|
Scritto da ㎝ |
2017-03-27 17:57:26 - Re: aiuto sono un principiante
|
mboh. se vuoi provare a condividere una console su pythonanywhere.com per mostrarmi l'errore, io li sono "miron".
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. -- ㎝ |
|
Scritto da lollo94 |
2017-03-29 18:26:21 - Re: aiuto sono un principiante
|
Ci sono aggiornamenti, come hai fatto per risolvere?
|
Pagina: 1
Esegui il login per scrivere una risposta.