Python - Fibonacci sequence


num = int(input('which term do you want? : '))
a = 1;
b = 1;
print(1,a)
for i in range(2, num+1):
    a,b = b,a+b
    print(i,a)

English writing practice 2025-5/11

After graduating from university and working for several years, I developed the mindset that a job should be related to one’s interests. Peo...