{}
CHRISTMAS
OFFER
62
%OFF

Stop copy pasting code you don't actually understand

Build the coding confidence you need to become a developer companies will fight for

Stop copy pasting code you don't actually understand

Become a PRO
Become a PRO
CHRISTMAS
OFFER
62
%OFF

Stop copy pasting code you don't actually understand

Build the coding confidence you need to become a developer companies will fight for

Stop copy pasting code you don't actually understand

Become a PRO
Become a PRO
run-icon
main.py
#!/bin/env python3 loveParts = ["Loves me", "Loves me not"] def loves_me(n): loveString = "" for i in range(n-1): loveString += f"{loveParts[i%2]}, " loveString += loveParts[(n-1)%2].upper() return loveString
Output