Skip to content

Commit

Permalink
reverse_number
Browse files Browse the repository at this point in the history
  • Loading branch information
kgupta786 committed Oct 1, 2018
1 parent 456e345 commit 24a9fa7
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions reverse/Reverse.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#python3
/*
Made By: Keshav Gupta
7:48 PM
*/

print("Enter the number to reverse")
t=input()
rev_num=t[::-1]
print("Reversed Number is ",rev_num)

0 comments on commit 24a9fa7

Please sign in to comment.