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()

Recommended Answers

All 2 Replies

Small typo in that example, the font name. Should be 'Times New Roman'

thanks for pointing that out

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.