s='hello,python' '''居中对齐''' print('居中对齐,空间长度为20,空部分用*填充',s.center(20,'*')) #center翻译为居中 print('左对齐,空间长度为20,空部分用*填充',s.ljust(20,'*')) #just翻译为 只是; 正好; 恰好; 正当…时 print('右对齐,空间长度为20,空部分用*填充',s.rjust(20,'*')) print('右对齐,空间长度为20,如超出20返回字符串本身,没有填充参数空部分用0填充',s.zfill(20)) print('右对齐,空间长度为10,如超出10返回字符串本身,没有填充参数空部分用0填充',s.zfill(10)) print('0添加位置为-号之后','-4856'.zfill(10))
E:\PycharmProjects\pythonProject\venv\Scripts\python.exe E:/PycharmProjects/pythonProject/demon1/demo16.py 居中对齐,空间长度为20,空部分用*填充 ****hello,python**** 左对齐,空间长度为20,空部分用*填充 hello,python******** 右对齐,空间长度为20,空部分用*填充 ********hello,python 右对齐,空间长度为20,如超出20返回字符串本身,没有填充参数空部分用0填充 00000000hello,python 右对齐,空间长度为10,如超出10返回字符串本身,没有填充参数空部分用0填充 hello,python 0添加位置为-号之后 -000004856 进程已结束,退出代码0