Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
I love Python for this module solution in Clear category for I Love Python! by Vulwsztyn
import random
def i_love_python():
ans="I love Python!"
answer=''
part=''
s=0
for i in ans:
while(part!=i):
part=chr(random.randrange(0,256))
s+=1
answer+=part
print(s)
return answer
Dec. 19, 2016