diff --git a/linear_search.py b/linear_search.py index 1030c7a..4864589 100644 --- a/linear_search.py +++ b/linear_search.py @@ -12,4 +12,4 @@ def linear_search(array, to_find): return to_return nums = [12, 34, 54, 88, 21] -print linear_search(nums, 88) \ No newline at end of file +print(linear_search(nums, 88)) diff --git a/tuplesExample.py b/tuplesExample.py index 866a9ff..e2d5633 100644 --- a/tuplesExample.py +++ b/tuplesExample.py @@ -26,4 +26,12 @@ # iterating through tuples for x in tupC: - print(x) \ No newline at end of file + print(x) + + + + ######## + +thistuple = ("apple", "banana", "cherry") +print(thistuple) +