Python String count()เมธอด
ตัวอย่าง
ส่งกลับจำนวนครั้งที่ค่า "apple" ปรากฏในสตริง:
txt = "I love apples, apple are my favorite fruit"
x = txt.count("apple")
print(x)
ความหมายและการใช้งาน
เมธอดส่ง คืนcount()
จำนวนครั้งที่ค่าที่ระบุปรากฏในสตริง
ไวยากรณ์
string.count(value, start, end)
ค่าพารามิเตอร์
Parameter | Description |
---|---|
value | Required. A String. The string to value to search for |
start | Optional. An Integer. The position to start the search. Default is 0 |
end | Optional. An Integer. The position to end the search. Default is the end of the string |
ตัวอย่างเพิ่มเติม
ตัวอย่าง
ค้นหาจากตำแหน่ง 10 ถึง 24:
txt = "I love apples, apple are my favorite fruit"
x = txt.count("apple",
10, 24)
print(x)