Gf❤️ ya bf❣️ ko parpose karen ka code chiye 😂.....
Anonymous Poll
69%
Yes 🙃
13%
No🖤
18%
Single he thik hai 🙏
👍1
import math
import turtle
turtle.shape("turtle")
turtle.setup(width=900, height=700)
turtle.speed(0)
turtle.bgcolor('black')
turtle.color('red')
def heart1(h):
return 15 * math.sin(h) ** 3
def heart2(h):
return 12 * math.cos(h) - 5 * math.cos(2 * h) - 2 * math.cos(3 * h) - math.cos(4 * h)
for i in range(600):
x, y = heart1(i) * 20, heart2(i) * 20
turtle.goto(x, y)
# Draw "I Love You" in the center
turtle.penup()
turtle.goto(0, -45)
turtle.pendown()
turtle.write('I Love You Sakshi', align='center', font=('Arial', 50, 'bold'))
turtle.done()
import turtle
turtle.shape("turtle")
turtle.setup(width=900, height=700)
turtle.speed(0)
turtle.bgcolor('black')
turtle.color('red')
def heart1(h):
return 15 * math.sin(h) ** 3
def heart2(h):
return 12 * math.cos(h) - 5 * math.cos(2 * h) - 2 * math.cos(3 * h) - math.cos(4 * h)
for i in range(600):
x, y = heart1(i) * 20, heart2(i) * 20
turtle.goto(x, y)
# Draw "I Love You" in the center
turtle.penup()
turtle.goto(0, -45)
turtle.pendown()
turtle.write('I Love You Sakshi', align='center', font=('Arial', 50, 'bold'))
turtle.done()
Who developed Python Programming Language?..
Anonymous Quiz
20%
a) Wick van Rossum
13%
b) Rasmus Lerdorf
66%
c) Guido van Rossum
1%
d) Niene Stom
❣️Computer science engineer_1❤️ pinned «Who developed Python Programming Language?..»
What will be the value of the following Python expression?
4 + 3 % 5
4 + 3 % 5
Anonymous Quiz
26%
a) 7
37%
b) 2
18%
c) 4
20%
d) 1
👍5