I am on my ipad and i just bought pythonista. I wanted to create something in turtle but i kept on getting the error: module ‘turtle’ has no attribute ‘Screen’
The code:
import turtle as t
playerAscore=0
playerBscore=0
window = t.Screen()
window.title("pong ping")
window.bgcolor("black")
window.setup(width=800,height=600)
window.tracer(0)
I am aware this turtle module is possibly old or unfinished but if there is anything i can do please let me know.a