Question: Python programming Screenshot plz it through CodelLoad and by creating your own test cases. Part I: Full-time or Part-time Student? (20 points) Write a function

Python programming Screenshot plz
it through CodelLoad and by creating your own test cases. Part I: Full-time or Part-time Student? (20 points) Write a function student status() that takes a single integer argument, num credits, that repre sents the number of credits a student is taking: . if num credits is more than 11, return the string ful1-time' .if num.credits is in the range 1 through 11, return part-time'. CSE 101 - Fall 2017 Lab #2 Page 1 . Otherwise, return ' unknown'. Remember that Python is a case-sensitive language. Lowercase and uppercase letters are not the same symbols! Examples: Function Call student_status (7) part-time" student.status (14)full-time student status (-1) unknown' Return Value Note that the quotation marks displayed in the examples are there to emphasize that the argument and return value are strings. You should not add quotation marks to your return values Remember: CodeLoad has additional tests for you to try! Upload your code there and see how your code matches up against harder tests
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
