Guest User

Untitled

a guest
Apr 19th, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. def base():
  2. a = input("Enter anything: ")
  3.  
  4. def check_a():
  5. if a == '0': return False
  6. else: return a
  7.  
  8. ret = check_a()
  9. if ret == False: return
  10. print('String:', a,"n")
  11. base()
  12.  
  13.  
  14. base()
Add Comment
Please, Sign In to add comment