You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import math from turtle import * def hearta(k): return 15*math.sin(k)**3 def heartb(k): return 12*math.cos(k)-5*\ math.cos(2*k)-2*\ math.cos(3*k)-\ math.cos(4*k) speed(9000) bgcolor("black") for i in range(6000): goto(hearta(i)*20,heartb(i)*20) for j in range(5): color("red") goto(0,0) done()
#1
Open
Mung357 opened this issue
Dec 6, 2024
· 0 comments
import math
from turtle import *
def hearta(k):
return 15*math.sin(k)**3
def heartb(k):
return 12math.cos(k)-5
math.cos(2k)-2
math.cos(3k)-
math.cos(4k)
speed(9000)
bgcolor("black")
for i in range(6000):
goto(hearta(i)20,heartb(i)20)
for j in range(5):
color("red")
goto(0,0)
done()**
The text was updated successfully, but these errors were encountered: