127k views
3 votes
Python

You need to have some text that will repeat on 50 random images to create memes for your Twitter account. Don’t worry about having any images; just get the text to repeat for a meme that you would create. That would take you a while to do… but luckily you have for loops! Using a for loop, print “Takes one political science class. Knows how to solve the world’s problems.” for your 50 meme images, so 50 times

User TacoEater
by
4.9k points

1 Answer

6 votes

for i in range(50):

print("Takes one political science class. Knows how to solve the world's problems.")

I hope this helps!

User Glls
by
5.5k points