Python中有多種方法可以對字符串進行填充和對齊,以下是一些常用的方法:
str = "hello"
print(str.ljust(10, '*')) # 輸出:hello*****
print(str.rjust(10, '*')) # 輸出:*****hello
print(str.center(10, '*')) # 輸出:**hello***
str = "hello"
print('{:<10}'.format(str)) # 輸出:hello
print('{:>10}'.format(str)) # 輸出: hello
print('{:^10}'.format(str)) # 輸出: hello
str = "hello"
print(f'{str:<10}') # 輸出:hello
print(f'{str:>10}') # 輸出: hello
print(f'{str:^10}') # 輸出: hello