Skip to content

Instantly share code, notes, and snippets.

@itisFarzin
Last active October 3, 2021 07:42
Show Gist options
  • Save itisFarzin/696d93302b20f25163606c5e52535ee5 to your computer and use it in GitHub Desktop.
Save itisFarzin/696d93302b20f25163606c5e52535ee5 to your computer and use it in GitHub Desktop.
reverse number
def reverse_number(number: int):
return int(str(number)[::-1])
print(reverse_number(123))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment