Check if string starts/ends with double quote and has double quotes inside.
Implement this function:
def within_and_has_double_quotes(s: str) -> bool:
Write the function only — the arguments are read for you and the return value is printed automatically.
Arguments arrive as one Python literal per line, in this order: s.
Input
'"say "hi" now"'
Output
True