Latest web development tutorials

Python beinhaltet 96 Übungen

Python 100 Li Python 100 Li

Thema: zählen die Anzahl der Neutronen string erscheint.

Programmanalyse: Keine.

Source Code:

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

Das obige Beispiel Ausgabe lautet:

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

Python 100 Li Python 100 Li