Skip to content

Commit 391bfaa

Browse files
committed
V 1.0
1 parent c8bd46e commit 391bfaa

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

CMD-Fibonacci-recursive.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def main():
2121
result = store_Fibonacci_series_in_array(number_Of_Series)
2222
# storing Fibonacci serie array in result variable
2323

24-
array_printer(result)
24+
array_Printer(result)
2525
print("**************************************************")
2626

2727

@@ -71,17 +71,17 @@ def store_Fibonacci_series_in_array(number):
7171
return Fibonacci_Series
7272

7373

74-
def array_printer(array):
74+
def array_Printer(array):
7575
"""
7676
function for printing each array element in a line.
7777
@param array: an array of elements.
7878
@type text: anything like integer, double and string.
7979
@examples:
8080
array_1 = []
8181
array_2 = [1, 2, 3]
82-
>>> array_printer(array_1)
82+
>>> array_Printer(array_1)
8383
84-
>>> array_printer(array_2)
84+
>>> array_Printer(array_2)
8585
1
8686
2
8787
3

0 commit comments

Comments
 (0)