python字符寬度如何設(shè)置

小億
317
2023-11-13 23:12:41

在Python中,可以使用str.ljust()、str.rjust()和str.center()方法來設(shè)置字符串的寬度。

  1. str.ljust(width[, fillchar])方法會(huì)返回一個(gè)左對(duì)齊的字符串,寬度為width。如果指定了fillchar參數(shù),將使用fillchar作為填充字符(默認(rèn)為空格)。

示例代碼:

s = "Hello"
width = 10
fillchar = "-"
result = s.ljust(width, fillchar)
print(result)  # 輸出:Hello-----
  1. str.rjust(width[, fillchar])方法會(huì)返回一個(gè)右對(duì)齊的字符串,寬度為width。如果指定了fillchar參數(shù),將使用fillchar作為填充字符(默認(rèn)為空格)。

示例代碼:

s = "Hello"
width = 10
fillchar = "-"
result = s.rjust(width, fillchar)
print(result)  # 輸出:-----Hello
  1. str.center(width[, fillchar])方法會(huì)返回一個(gè)居中對(duì)齊的字符串,寬度為width。如果指定了fillchar參數(shù),將使用fillchar作為填充字符(默認(rèn)為空格)。

示例代碼:

s = "Hello"
width = 10
fillchar = "-"
result = s.center(width, fillchar)
print(result)  # 輸出:--Hello---

通過這些方法,可以方便地設(shè)置字符串的寬度和對(duì)齊方式。

1