HOME/Articles/

simple python-example-96 (snippet)

Article Outline

Python example 'python-example-96'

python-example-96

Python example: python-example-96

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

if __name__ == '__main__':
    str1 = raw_input('input a string:\n')
    str2 = raw_input('input a sub string:\n')
    ncount = str1.count(str2)
    print(ncount)