Skip to content

Commit 7c29cf9

Browse files
authored
Add files via upload
1 parent 2dc37b0 commit 7c29cf9

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

test1-1.py

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import os
2+
3+
def backit(astring):
4+
return astring[::-1]
5+
6+
def main():
7+
stringa = raw_input("Enter your input: ");
8+
print "result is", backit(stringa)
9+
10+
if __name__ == '__main__':
11+
main()

0 commit comments

Comments
 (0)