def triangular(n):
tri = 0
for i in range(1, n+1):
tri = tri + i
print ("The answer is equal to" +(tri))
triangular(4)
I just need help with the print statement because it doesn't work. I am trying to print the answer is equal to tri