What's wrong here? Why not this fb logo working?(python) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

What's wrong here? Why not this fb logo working?(python)

import turtle s=turtle.screen() s.bgcolor ('white') a=turtle.Turtle() a.shape('arrow') a.pensize(1) a.color('blue') a.begin_fill() a.circle(140,360) a.end_fill() a.right(7) a.color(white) a.setpos(a.pos()[0]-30,a.pos()[1]) a.pensize(3) a.begin_fill() a.left(97) a.forward(98) a.left(90) a.forward(40) a.right(90) a.forward(40) a.right(90) a.forward(40) a.left(90) a.forward(40) a.circle(-45,90) a.forward(40) a.right(90) a.forward(40) a.right(90) a.forward(40) a.circle(17,90) a.forward(23) a.left(90) a.forward(40) a.right(90) a.forward(40) a.right(90) a.forward(40) a.left(90) a.forward(188) a.right(90) a.forward(8) a.end_fill() a.penup() a.setpos(-270,-90) a.pendown() a.pencolor('red') a.write('https//youtube.com/castorclasses/', fonts=("Arial",24,"normal")) This is the code, where's the bug?

18th Oct 2023, 7:51 PM
Naruto Uzumaki
Naruto Uzumaki - avatar
3 Answers
+ 3
Naruto Uzumaki sololearn doesnt support turtle module for python.
18th Oct 2023, 7:54 PM
Junior
Junior - avatar
+ 4
Naruto Uzumaki here is your Facebook logo using turtle *I made some comments for you inside the code as well. https://code.sololearn.com/WOVBHKi9F9AS/?ref=app https://code.sololearn.com/WeSop84ZMA1C/?ref=app
18th Oct 2023, 8:35 PM
BroFar
BroFar - avatar
+ 2
Junior does not turtle is supported on termux too?
18th Oct 2023, 8:05 PM
Naruto Uzumaki
Naruto Uzumaki - avatar