Your question is Do-While Fibonacci Series. Start with the requirements on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
Print the Fibonacci series using a do-while loop.
Implement the function below to return the first n Fibonacci numbers, starting with 0, 1. Python has no native do-while statement, so emulate its behavior with while True and an explicit termination check.
n is an integer. Return a list containing exactly n Fibonacci numbers. Return an empty list when n is 0.
def fibonacci_series(n):