欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

python 補齊字符串

方一強2年前11瀏覽0評論

在Python程序設計中,有時需要對字符串進行補齊操作。Python提供了多種補齊字符串的方法,今天我們就來介紹一下Python補齊字符串的幾種方式。

1、使用字符串的ljust()和rjust()方法。

#使用ljust()方法,將字符串左對齊并補齊指定長度
str1 = "hello"
new_str1 = str1.ljust(10, "*")  
print(new_str1)  #輸出:hello*****
#使用rjust()方法,將字符串右對齊并補齊指定長度
str2 = "world"
new_str2 = str2.rjust(10, "#")  
print(new_str2)  #輸出:#####world

2、使用字符串的center()方法,將字符串居中對齊并補齊指定長度。

str3 = "python"
new_str3 = str3.center(10, "-")  
print(new_str3)  #輸出:--python--

3、使用format()方法。

#通過format方法的“{}”占位符,控制輸出的長度
str4 = "hello"
new_str4 = "{:<10}".format(str4)  
print(new_str4)  #輸出:hello     
str5 = "world"
new_str5 = "{:>10}".format(str5)  
print(new_str5)  #輸出:     world
str6 = "python"
new_str6 = "{:^10}".format(str6)  
print(new_str6)  #輸出:  python

以上就是Python補齊字符串的幾種方式,通過這些方法可以幫助我們解決實際應用場景中字符串補齊的需求。