Having issues with this assignment. Can't get the correct return for 4 part 1. Please help?!
- Create a module called fibonacciTest.
- In the module, write a function called getFibSeq that:
- Prompts the user for a valid input
- Returns a list of the fibonacci sequence up to that number
- Write a try-catch block that will catch the two exceptions listed in #4 below
- Write the following print statements to verify that the function and try-catch work
- with user input: 100print out [1,1,2,3,5,8,13,21,34,55,89]
- Exception 1: with user input: -1print out 'Input must be greater than 0'
- Exception 2: with user input: 'hello'print out 'Sorry, integer greater than zero only'