Python rjust()字符串右对齐方法详解
和 ljust() 方法类似,不同之处在于,rjust() 方法是向字符串的左侧填充指定字符,从而达到右对齐文本的目的。
rjust() 方法的基本格式如下:
【例 1】
【例 2】
rjust() 方法的基本格式如下:
S.rjust(width[, fillchar])
其中各个参数的含义如下:- S:表示要进行填充的字符串;
- width:表示包括 S 本身长度在内,字符串要占的总长度;
- fillchar:作为可选参数,用来指定填充字符串时所用的字符,默认情况使用空格。
【例 1】
S = 'https://www.xinbaoku.com/python/' addr = 'https://www.xinbaoku.com' print(S.rjust(35)) print(addr.rjust(35))输出结果为:
https://www.xinbaoku.com/python/ https://www.xinbaoku.com可以看到,每行字符串都占用 35 个字节的位置,实现了整体的右对齐效果。
【例 2】
S = 'https://www.xinbaoku.com/python/' addr = 'https://www.xinbaoku.com' print(S.rjust(35,'-')) print(addr.rjust(35,'-'))输出结果为:
-----https://www.xinbaoku.com/python/ -------------https://www.xinbaoku.com
所有教程
- C语言入门
- C语言编译器
- C语言项目案例
- 数据结构
- C++
- STL
- C++11
- socket
- GCC
- GDB
- Makefile
- OpenCV
- Qt教程
- Unity 3D
- UE4
- 游戏引擎
- Python
- Python并发编程
- TensorFlow
- Django
- NumPy
- Linux
- Shell
- Java教程
- 设计模式
- Java Swing
- Servlet
- JSP教程
- Struts2
- Maven
- Spring
- Spring MVC
- Spring Boot
- Spring Cloud
- Hibernate
- Mybatis
- MySQL教程
- MySQL函数
- NoSQL
- Redis
- MongoDB
- HBase
- Go语言
- C#
- MATLAB
- JavaScript
- Bootstrap
- HTML
- CSS教程
- PHP
- 汇编语言
- TCP/IP
- vi命令
- Android教程
- 区块链
- Docker
- 大数据
- 云计算