def true_love_score(
trust,
honesty,
respect,
communication,
support,
happiness
):
"""
Each value should be between 0 and 10.
"""
score = (
trust +
honesty +
respect +
communication +
support +
happiness
)
percentage = (score / 60) * 100
print(f"Love Score: {percentage:.1f}%")
if percentage >= 90:
print("❤️ Very likely true love.")
elif percentage >= 75:
print("💖 Strong, healthy relationship.")
elif percentage >= 50:
print("💛 Good foundation, but there is room to grow.")
else:
print("💔 Relationship may need significant improvement.")
print("A e keni gjetur dashurinë e vërtetë?")
print("------------------------------------")
trust = float(input("Besimi (0-10): "))
honesty = float(input("Sinqeriteti (0-10): "))
respect = float(input("Respekti (0-10): "))
communication = float(input("Komunikimi (0-10): "))
support = float(input("Mbështetja (0-10): "))
happiness = float(input("Lumturia (0-10): "))
true_love_score(
trust,
honesty,
respect,
communication,
support,
happiness
)