HOME/Articles/

simple python-example-27 (snippet)

Article Outline

Python example 'python-example-27'

Functions in program:

  • def output(s,l):

python-example-27

Python example: python-example-27

#!/usr/bin/python
# -*- coding: UTF-8 -*-

def output(s,l):
    if l==0:
       return
    print((s[l-1]))
    output(s,l-1)

s = raw_input('Input a string:')
l = len(s)
output(s,l)