I’ve done my 100 Days of Code journey in Java. Feel free to explore the repository. Why Java? Well as my first ever programming language I still feel like it is the language that I would prefer to work with...
Check out the repository here!
# A simple Python code for Fibonacci Series
def fibonacci(n):
a, b = 0, 1
for _ in range(n):
print(a, end=" ")
a, b = b, a + b
fibonacci(10)