e03426b8fd696b8794e21ef52c76a0a5140e1463,Maths/fibonacciSeries.py,,,#,9

Before Change


   else:
       return(recur_fibo(n-1) + recur_fibo(n-2))
    
limit = int(input("How many terms to include in fibonacci series: "))

if limit <= 0:
   print("Please enter a positive integer: ")
else:
   print(f"The first {limit} terms of the fibonacci series are as follows")

After Change


        print("Please enter a positive integer: ")

if __name__ == "__main__":
    main()
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 6

Instances


Project Name: TheAlgorithms/Python
Commit Name: e03426b8fd696b8794e21ef52c76a0a5140e1463
Time: 2018-10-11
Author: r.gc@hotmail.es
File Name: Maths/fibonacciSeries.py
Class Name:
Method Name:


Project Name: geekcomputers/Python
Commit Name: 0d16b9dfc4b123fe91b388b9140b91866a8351a6
Time: 2019-10-19
Author: 50145141+CodeLongAndProsper90@users.noreply.github.com
File Name: SimpleCalculator.py
Class Name:
Method Name:


Project Name: TheAlgorithms/Python
Commit Name: b7eae6b0e37c0b44889657688a530f307c8cd2f5
Time: 2016-07-29
Author: tony@motiondsp.com
File Name: LinearSearch.py
Class Name:
Method Name: