You're appending a tuple (hence the parenthesis). You can append only one element at a time. So you can either write:
list.append(300) list.append(fib(300))
Or you just add a list to the list:
list = list + [300,fib(300)]
-Jaap-