Assalamualaikum
#Hallo Semuanya!
Diartikel kali ini akan membagi pengalaman bagaimana cara membuat Love di Python
Kali aja kan ada yang mau nembak cewek tapi biar lebih greget nembaknya pake kode hahaa
Yukkk , langsung Cekidott
Pertama,disini mimin menggunakan Library bawaan Python ya , yaitu Turtle , yang dimana library ini biasanya digunakan untuk membuat gambar
import turtle
# Creating a turtle object(pen)
pen = turtle.Turtle()
# Defining a method to draw curve
def curve():
for i in range(200):
# Defining step by step curve motion
pen.right(1)
pen.forward(1)
# Defining method to draw a full heart
def heart():
# Set the fill color to red
pen.fillcolor('red')
# Start filling the color
pen.begin_fill()
# Draw the left line
pen.left(140)
pen.forward(113)
# Draw the left curve
curve()
pen.left(120)
# Draw the right curve
curve()
# Draw the right line
pen.forward(112)
# Ending the filling of the color
pen.end_fill()
# Defining method to write text
def txt():
# Move turtle to air
pen.up()
# Move turtle to a given position
pen.setpos(-68, 95)
# Move the turtle to the ground
pen.down()
# Set the text color to lightgreen
pen.color('lightgreen')
# Write the specified text in
# specified font style and size
pen.write("", font=(
"Verdana", 12, "bold"))
# Draw a heart
heart()
# Write text
txt()
# To hide turtle
pen.ht()
Kedua,Andai belum punya kode editor buat python , kalian bisa coba kode editor online di Relp.it pilih buat pythonn
Output
Andai masih ada maslah saat run kode diatas , bisa hubungi mimin di Kolom Komentar
Semoga artikel ini bemanfaat terutama bagi kalian yang baru memasuki dunia progamming sama seperti mimin juga,hehe
Jangan lupa share artikel ini ke teman atau saudara kalian
SALAM MAHASISWA
SALAM CODINGER
Posting Komentar