How to make a beautiful Heart using python code?

Аватар автора
Python для начинающих: с нуля к успеху
Code: import math from turtle import * def heart(k): return 15*math.sin(k)**3 def heart1(k): return 12*math.cos(k)-5* math.cos(2*k)-2* math.cos(3*k)- math.cos(4*k) speed(1000) bgcolor('black') for i in range(6000): goto(heart(i)*20,heart1(i)*20) for j in range(5): color('pink') done() #100pythonpracticecode

0/0


0/0

0/0

0/0