HTTP status codes

Sign in to test your solution.
# HTTP status codes program # ------------------------- # Subprograms # ------------------------- def http_status(status): # ------------------------- # Main program # ------------------------- code = int(input("Enter the status code: ")) print(http_status(code))