Using Python Write a program for flipping a coin 10,000 times and store the results in a list. After which, identify the number of streaks. (Streak - a series of 5 or more heads or tails) (20) Hint: use random.randint() function to create the coin flip.