Meme2.Py (Cont.) Python 3
Meme2.Py (Cont.) Python 3
) / Python 3
# App -------------------
app = App("meme")
draw_meme()
app.display()
meme3.py / Python 3
# Imports ---------------
# Functions -------------
def draw_meme():
meme.clear()
meme.image(0, 0, "woodpecker.png")
meme.text(
20, 20, top_text.value,
color="orange",
size=40,
font="courier")
meme.text(
20, 320, bottom_text.value,
color="blue",
size=28,
font="times new roman",
)