The user provides an undefined number of strings as the input; we have to count number of strings the user provided.
I tried :
def count(terms*): # Example count('IloveU','Iwantyou','No')
count = 0
for term in terms:
count += 1
print (count)
Thank you