Question:
So essentially when I try to run my code it gives this output in the console on the title of the question.
Repl link/Link to where the bug appears:
Screenshots, links, or other helpful context:
Here is my code;
# ๐จ Don't change the code below ๐
print("Welcome to the Love Calculator!")
name1 = input("What is your name? \n")
name2 = input("What is their name? \n")
# ๐จ Don't change the code above ๐
#Write your code below this line ๐
l_name1 = name1.lower()
l_name2 = name2.lower()
l_name = l_name1 and l_name2
count_true = int(l_name.count("t") + l_name.count("r") + l_name.count("u") + l_name.count("e")
countr_true2 = int((l_name.count("l") + l_name.count("o") + l_name.count("v") + l_name.count("e")
if count_true >= 1:
print(f"The number is {count_true}")