Declare a function called create_url(). It should take two arguments host and port and return URL in the format "https://{host}:{port}" (without quotation marks).
Set default values for both parameters: a string "localhost" and an integer 443 respectively. Called without arguments, the function would return "https://localhost:443" (without quotations marks).