File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ def main():
21
21
result = store_Fibonacci_series_in_array (number_Of_Series )
22
22
# storing Fibonacci serie array in result variable
23
23
24
- array_printer (result )
24
+ array_Printer (result )
25
25
print ("**************************************************" )
26
26
27
27
@@ -71,17 +71,17 @@ def store_Fibonacci_series_in_array(number):
71
71
return Fibonacci_Series
72
72
73
73
74
- def array_printer (array ):
74
+ def array_Printer (array ):
75
75
"""
76
76
function for printing each array element in a line.
77
77
@param array: an array of elements.
78
78
@type text: anything like integer, double and string.
79
79
@examples:
80
80
array_1 = []
81
81
array_2 = [1, 2, 3]
82
- >>> array_printer (array_1)
82
+ >>> array_Printer (array_1)
83
83
84
- >>> array_printer (array_2)
84
+ >>> array_Printer (array_2)
85
85
1
86
86
2
87
87
3
You can’t perform that action at this time.
0 commit comments