在Python中,just函數通常指的是字符串對象的對齊方法。該方法可以用于在字符串的前面或后面添加空格或指定的字符,使字符串達到指定的長度。
下面是使用just函數的示例:
# 使用rjust方法向右對齊字符串并填充空格
text = "hello"
justified_text = text.rjust(10) # 默認填充空格
print(justified_text) # 輸出:' hello'
# 使用ljust方法向左對齊字符串并填充指定字符
text = "world"
justified_text = text.ljust(10, '*') # 填充*
print(justified_text) # 輸出:'world*****'
# 使用center方法居中對齊字符串并填充指定字符
text = "welcome"
justified_text = text.center(15, '=') # 填充=
print(justified_text) # 輸出:'====welcome===='
通過使用rjust、ljust或center方法,可以實現字符串的不同對齊方式和填充字符,從而滿足不同的需求。