Python String center ()เมธอด
ตัวอย่าง
พิมพ์คำว่า "กล้วย" ได้พื้นที่ 20 ตัวอักษร โดยมีคำว่า "กล้วย" อยู่ตรงกลาง:
txt = "banana"
x = txt.center(20)
print(x)
ความหมายและการใช้งาน
เมธอดจะจัด แนวcenter()
สตริงให้อยู่ตรงกลางโดยใช้อักขระที่ระบุ (เว้นวรรคเป็นค่าเริ่มต้น) เป็นอักขระเติม
ไวยากรณ์
string.center(length, character)
ค่าพารามิเตอร์
Parameter | Description |
---|---|
length | Required. The length of the returned string |
character | Optional. The character to fill the missing space on each side. Default is " " (space) |
ตัวอย่างเพิ่มเติม
ตัวอย่าง
ใช้ตัวอักษร "O" เป็นอักขระเสริม:
txt = "banana"
x = txt.center(20, "O")
print(x)