1. Write a Python program that creates a tuple storing first 9 terms of Fibonacci series.

# Code
fib = (0, 1, 1, 2, 3, 5, 8, 13, 21) # each term is sum of its two previous terms