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