I have this program here and I've been instructed to loop the output of this code 50 times.
n = 2
x = 0
for x in range(1, 15):
print(n)
n = n + 2
print("who do we appreciate")
I'm new to loops/python 3.6 in general, but how would I loop the output of this code? I'm looking to print the output of this code, 50 times. The code written here is working. I am looking to print out what this code produces, 50 times.