Latest web development tutorials

Python beinhaltet 62 Übungen

Python 100 Li Python 100 Li

Titel: Suchbegriff.

Programmanalyse: Keine.

Source Code:

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

sStr1 = 'abcdefg'
sStr2 = 'cde'
print sStr1.find(sStr2)

Das obige Beispiel Ausgabe lautet:

2

Python 100 Li Python 100 Li