well , I just realised that we forgot about our " turtle " so here it is printing " hello world "
from turtle import *
title("hello world")
shape("turtle")
speed(2)
color("blue")
write('hello world',align = 'center', font=('imes New Roman', 36,'bold'))
done()