Forum
>>
Principianti
>>
python non funziona impostando turtle
Pagina: 1
Esegui il login per scrivere una risposta.
Pagina: 1
Scritto da nostar |
2018-09-16 17:33:56 - python non funziona impostando turtle
|
import turtle
ninja = turtle.Turtle() # Crea una "Turtle" di nome "ninja" ninja.forward(100) # Procedi in avanti di 100 passi (o pixel) ninja.left(90) # Ruota a sinistra, cioè in senso antiorario, di 90 gradi ninja.forward(100) # Procedi in avanti di 100 passi (o pixel) scrivendo questo programma con un sistema operativo window 10 il risultato è: Traceback (most recent call last): File "C:\Users\steam\Desktop\pithon esempi\turtle.py", line 1, in <module> import turtle File "C:\Users\steam\Desktop\pithon esempi\turtle.py", line 2, in <module> ninja = turtle.Turtle() # Crea una "Turtle" di nome "ninja" AttributeError: module 'turtle' has no attribute 'Turtle' scrivendolo sul mio vecchio computer con window 8 funziona e succede con programmi simili, qualcuno potrebbe aiutarmi a capire dove ho sbagliato. |
|
Scritto da ㎝ |
2018-09-16 19:36:38 - Re: python non funziona impostando turtle
|
prova a chiamare il tuo programma in modo diverso da turtle.py
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 nostar |
2018-09-16 20:40:11 - Re: python non funziona impostando turtle
|
ho provato a chiamare il programma in modo diverso ma non cambia niente, comunque grazie.
|
|
Scritto da ㎝ |
2018-09-16 22:31:36 - Re: python non funziona impostando turtle
|
cerca se c'è un turtle.pyc in qualche sottocartella del tuo desktop, e cancellalo.
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 nostar |
2018-09-17 19:58:37 - Re: python non funziona impostando turtle
|
ho provato a togliere il file turtle.pycache e funziona grazie
|
Pagina: 1
Esegui il login per scrivere una risposta.