中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

Python中對如何填充和對齊字符串

小億
197
2024-04-02 20:55:57
欄目: 編程語言

Python中有多種方法可以對字符串進行填充和對齊,以下是一些常用的方法:

  1. 使用str.ljust(), str.rjust(), str.center()方法對字符串進行填充和對齊。這些方法可以通過指定字符串的總長度和填充字符來左對齊、右對齊和居中對齊字符串。
str = "hello"
print(str.ljust(10, '*'))  # 輸出:hello*****
print(str.rjust(10, '*'))  # 輸出:*****hello
print(str.center(10, '*'))  # 輸出:**hello***
  1. 使用字符串的format()方法進行填充和對齊。可以通過在字符串中使用{}和格式化字符來指定對齊方式和填充字符。
str = "hello"
print('{:<10}'.format(str))  # 輸出:hello     
print('{:>10}'.format(str))  # 輸出:     hello
print('{:^10}'.format(str))  # 輸出:  hello   
  1. 使用f-string進行填充和對齊。可以在字符串前面加上對齊和填充字符,然后使用f-string進行格式化。
str = "hello"
print(f'{str:<10}')  # 輸出:hello     
print(f'{str:>10}')  # 輸出:     hello
print(f'{str:^10}')  # 輸出:  hello   

0
蕉岭县| 南阳市| 祁连县| 松溪县| 双鸭山市| 凌源市| 彭水| 新田县| 大英县| 光泽县| 丹寨县| 泰兴市| 新龙县| 墨江| 界首市| 凯里市| 宣化县| 台州市| 徐闻县| 广东省| 永福县| 罗平县| 洛隆县| 武定县| 平武县| 兴宁市| 平阴县| 荔浦县| 满城县| 甘谷县| 襄城县| 寿宁县| 尉犁县| 云安县| 育儿| 哈巴河县| 潮安县| 凤山市| 枣阳市| 吉木萨尔县| 颍上县|