HOME/Articles/

simple python-example-70 (snippet)

Article Outline

Python example 'python-example-70'

python-example-70

Python example: python-example-70

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

if __name__ == '__main__':
    s = raw_input('please input a string:\n')
    print('the string has %d characters.' % len(s))