|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
小知识:CentOS(CommunityEnterpriseOperatingSystem,中文意思是:社区企业操作系统)是Linux发行版之一。
python中字符串的ljust、rjust、center办法讲授
这三种办法的用法差不多:S.ljust(width[,fillchar]),即长度加占位符,默许为空格,这三种在格局化输入时用着异常便利。
如:
>>>a="Helloworld"
>>>printa.rjust(20)
Helloworld
>>>printa.ljust(20)
Helloworld
>>>printa.center(20)
Helloworld
>>>printa.rjust(20,*)
*********Helloworld
>>>printa.ljust(20,*)
Helloworld*********
>>>printa.center(20,*)
****Helloworld*****
注:假如width小于字符串的长度,则完全输入字符串
小知识:Linux同时具有字符界面和图形界面。在字符界面用户可以通过键盘输入相应的指令来进行操作。 |
|