Loading Python...
ACUBENS Learn Python Programming
Welcome to Acubens

Master the Art of
Python Programming

A comprehensive journey from the basics to advanced concepts. Learn data types, functions, OOP, file handling, and build real projects.

8 Chapters
80+ Programs
Self-paced
main.py
1
2
3
4
5
6
7
8
9
10
11
def fibonacci(n):
    a, b = 0, 1
    result = []
    while a < n:
        result.append(a)
        a, b = b, a + b
    return result

nums = fibonacci(100)
print(nums)
# [0,1,1,2,3,5,8,13,21...]
Explore Topics View full course โ†’
๐Ÿ