Shift a single character by k positions. Wrap around. Non-alpha unchanged.
Implement this function:
def caesar_shift_char(ch: str, k: int) -> str:
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: ch, k.
Input
'a'
3
Output
'd'