Latest web development tutorials

Python obejmuje ćwiczenia 96

Python 100 Li Python 100 Li

Wątek: policzyć liczbę neutronów pojawia się ciąg znaków.

Program Analysis: Brak.

Kod źródłowy:

#!/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

Powyższy przykład wyjście jest:

input a string:
www.w3big.com
input a sub string:
w3big
1

Python 100 Li Python 100 Li