It is somewhat complicated, but it is a good effort! Congrats!
Do not worry. It is a good effort. Asyou keep programming, and learn more, do it again and you will understand. Unfortunately, programming is 30% shown/read and 70% practice 
I did show you a shorter way in your private message. If you would like I can shrink that program down but that would reduce readability. In fact I just learned yesterday about the walrus operator :=
which could help make this smaller.
The code I supplied
numbers = [] # Create an empty list
while str(input("Would you like to add another number?\n")).lower() in ["y", "yes", ""]: # If the lowercase of the user's input is in the list of yes:
numbers.append(float(input("\nPlease enter a number, whole or decimal: "))) # Add the float of the user's input to the list
print(f"\nYour average is {sum(numbers)/len(numbers)}.") # Display the average of the numbers. It is the sum of the list divided by the number of items in the list.
# Other stuff to note: "\n" is the ANSI sequence to add a new line. "len" gathers the number of items in a list. "sum" finds the sum of the items in a list. ".lower()" makes the entire string lowercase.
And here it is if you want to end it on -1
:
numbers = []
while str(input("Would you like to add another number?\n")) in ["y", "yes", ""]:
number = float(input("\nPlease enter a number, whole or decimal: ")) # Get user's number
if int(number) == -1: # If the number is -1:
break # End loop
numbers.append(number) # Otherwise, add number to list "numbers"
print(f"\nYour average is {sum(numbers)/len(numbers)}.")
yes @CoderElijah you did sent me the code.