Latest web development tutorials

Python meliputi latihan 60

Python 100 Li Python 100 Li

Judul: menghitung panjang string.

Analisis Program: Tidak ada.

Source Code:

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

sStr1 = 'strlen'
print len(sStr1)

Contoh di atas output:

6

Python 100 Li Python 100 Li