Forum >> Principianti >> aiuto sono un principiante

Pagina: 1

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 ---
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à
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. -- ㎝
male allora . non capisco come mai a me non funziona . Sapresti aiutarmi , o meglio consigliarmi su come risolvere ?
male allora . non capisco come mai a me non funziona . Sapresti aiutarmi , o meglio consigliarmi su come risolvere ?
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. -- ㎝
Ci sono aggiornamenti, come hai fatto per risolvere? :confused:




Pagina: 1



Esegui il login per scrivere una risposta.