Kod'da bir hatam varsa Affola
Kod:
def fib(n):
a, b = 0, 1
while a < n:
while a < n:
print(a, end=" ")
a, b = b, a+b
print()
fibo = int(input("Sayi giriniz : "))
fib(fibo)
Follow along with the video below to see how to install our site as a web app on your home screen.
Not: This feature may not be available in some browsers.
def fib(n):
a, b = 0, 1
while a < n:
while a < n:
print(a, end=" ")
a, b = b, a+b
print()
fibo = int(input("Sayi giriniz : "))
fib(fibo)