Python ljust()字符串左对齐方法详解
Python ljust() 方法的功能是向指定字符串的右侧填充指定字符,从而达到左对齐文本的目的。
ljust() 方法的基本格式如下:
【例 1】
【例 2】
ljust() 方法的基本格式如下:
S.ljust(width[, fillchar])
其中各个参数的含义如下:- S:表示要进行填充的字符串;
- width:表示包括 S 本身长度在内,字符串要占的总长度;
- fillchar:作为可选参数,用来指定填充字符串时所用的字符,默认情况使用空格。
【例 1】
S = 'http://c.biancheng.net/python/' addr = 'http://c.biancheng.net' print(S.ljust(35)) print(addr.ljust(35))输出结果为:
http://c.biancheng.net/python/ http://c.biancheng.net注意,该输出结果中除了明显可见的网址字符串外,其后还有空格字符存在,每行一共 35 个字符长度。
【例 2】
S = 'http://c.biancheng.net/python/' addr = 'http://c.biancheng.net' print(S.ljust(35,'-')) print(addr.ljust(35,'-'))输出结果为:
http://c.biancheng.net/python/----- http://c.biancheng.net-------------此程序和例 1 的唯一区别是,填充字符从空格改为‘-’。
所有教程
- socket
- Python基础教程
- C#教程
- MySQL函数
- MySQL
- C语言入门
- C语言专题
- C语言编译器
- C语言编程实例
- GCC编译器
- 数据结构
- C语言项目案例
- C++教程
- OpenCV
- Qt教程
- Unity 3D教程
- UE4
- STL
- Redis
- Android教程
- JavaScript
- PHP
- Mybatis
- Spring Cloud
- Maven
- vi命令
- Spring Boot
- Spring MVC
- Hibernate
- Linux
- Linux命令
- Shell脚本
- Java教程
- 设计模式
- Spring
- Servlet
- Struts2
- Java Swing
- JSP教程
- CSS教程
- TensorFlow
- 区块链
- Go语言教程
- Docker
- 编程笔记
- 资源下载
- 关于我们
- 汇编语言
- 大数据
- 云计算
- VIP视频