- 🔭 I’m currently working on Java, C++, C, Python projects.
- 🌟 I also enjoy creating PowerPoint presentations.
- 📫 Reach me at: [email protected].
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...
# 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)