Len Python คือ คำสั่งสำหรับนับจำนวน กรณีถ้าใช้คำสั่ง len กับข้อความจะเป็นการนับจำนวนตัวอักษร และถ้าใช้คำสั่ง len กับตัวแปร List จะเป็นการนับจำนวนข้อมูลในตัวแปร List สามารถเขียนโปรแกรมได้ดังนี้
ตัวอย่าง Len Python คือ กับตัวแปรข้อความ
name = 'Python'
print( 'number of characters = '+len(name) )
ผลลัพธ์
number of characters = 6
ตัวอย่าง Len Python คือ กับตัวแปรชนิด List
name = ['Python', 'PHP', 'Java', 'Go']
print( 'The amount of data in the list = ' +str(len(name)) )
ผลลัพธ์
The amount of data in the list = 4