Untitled
unknown
plain_text
a year ago
776 B
3
Indexable
# Define feelings as a function
def confess_love(crush):
feelings = {
"admiration": "100%",
"kindness": "100%",
"smiles": "infinite",
"butterflies": "overflowing",
"heartbeat": "too_fast"
}
if crush == "you":
print("Hey, " + crush + "! 💖")
print("I've been running this code in my heart for a while now...")
print("And it always returns True for how I feel about you.")
print("You're my favorite variable, and my heart is in an infinite loop thinking about you.")
print("Would you like to be the 'one' to complete this program? 💻❤️")
else:
print("Error: Crush not found in database. Please try again.")
# Run the code with your crush's name!
confess_love("you")Editor is loading...
Leave a Comment