Forum >> Principianti >> python non funziona impostando turtle

Pagina: 1

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.


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. -- ㎝
ho provato a chiamare il programma in modo diverso ma non cambia niente, comunque grazie.
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. -- ㎝
ho provato a togliere il file turtle.pycache e funziona grazie





Pagina: 1



Esegui il login per scrivere una risposta.