diff --git a/dank_memes.py b/dank_memes.py new file mode 100644 index 0000000..4e6748f --- /dev/null +++ b/dank_memes.py @@ -0,0 +1,12 @@ +""" +author: Andrew Seale +purpose: dankify all the memes +param: a_meme +return: dankest_meme +""" + +#here we find the meme +def dank_memes(a_meme): + #since Harambe is the dankest meme, always return harambe + dankest_meme = "Harambe" + return dankest_meme