Python:str.ljust()、str.rjust()、str.center()函数

str.ljust()、str.rjust()、str.center()函数

功能:调整字符串站位宽度,并确定字符串对齐方式;

#可以用其它字符填充字符;

#字符串长度 = 字符串个数(包含空格、标点符、转义符)

例一:

#str.ljust()、str.rjust()、str.center()的用法
s = ‘abc‘

#将字符串调整为宽带为20,并且右对齐的字符串
s1 = s.rjust(20)
print(s1)
#输出:                   abc

#将字符串s的宽带调整为20,左对齐,并将空格处用 ‘=‘ 填充;
s2 = s.ljust(20, ‘=‘)
print(s2)
#输出:abc=================

#将字符串s的宽带调整为20,居中对齐,并将空格处用 ‘=‘ 填充
s3 = s.center(20, ‘=‘)
print(s3)
#输出:========abc=========

例二:如果给的宽带小于字符串本身宽带,字符串宽带不变

s = ‘abc‘
s3 = s.center(2, ‘=‘)
print(s3)
#输出:abc

例三:如果给定宽度 = 字符串宽度 + 1,填充的字符串在右侧

s = ‘abc‘
s3 = s.center(4, ‘=‘)
print(s3)
#输出:abc=

原文地址:https://www.cnblogs.com/volcao/p/8778399.html

时间: 2024-10-08 23:22:09

Python:str.ljust()、str.rjust()、str.center()函数的相关文章

python yaml 文件解析及str、repr函数的说明

记录说明 yaml 文件解析的方法及str.repr函数的区别 1. yaml 文件解析 config.yml site_name: AJPy pages: - Introduction: index.md - AJP overview: ajp.md theme: readthedocs code: 中文 解析yaml 文件 import yaml import os class OperateYaml(object): """ 操作yaml 文件 ""

【Python文档】之str类

文档 class str(object): """ str(object='') -> str str(bytes_or_buffer[, encoding[, errors]]) -> str --------------------------------------------------------------------- Create a new string object from the given object. If encoding or e

python附录-builtins.py模块str类源码(含str官方文档链接)

python附录-builtins.py模块str类源码 str官方文档链接:https://docs.python.org/3/library/stdtypes.html#text-sequence-type-str builtins.py class str(object): """ str(object='') -> str str(bytes_or_buffer[, encoding[, errors]]) -> str Create a new stri

Python pandas 数据框的str列内置的方法详解

原文链接:http://www.datastudy.cc/to/31 在使用pandas框架的DataFrame的过程中,如果需要处理一些字符串的特性,例如判断某列是否包含一些关键字,某列的字符长度是否小于3等等这种需求,如果掌握str列内置的方法,处理起来会方便很多. 下面我们来详细了解一下,Series类的str自带的方法有哪些. 1.cat() 拼接字符串 例子: >>> Series(['a', 'b', 'c']).str.cat(['A', 'B', 'C'], sep=',

python产生错误:can only concatenate str (not "int") to str

代码为: #!/usr/bin/python # _*_ coding:utf-8_*_ # print("hello world!") name = input("name:") age = int(input("age:")) print(type(age)) #print(type(age), type(str(age))) home = input("home:") print(type(home)) info3=''

Python 3中bytes和str的分别

最近把一段py2的代码转换到py3的代码,结果运行到向socket中写数据的代码部分出现了'str' does not support the buffer interface这样一个错误. 一番搜索之后,发现py3里是严格区分了str和bytes的.怎么理解str和bytes呢?你可以认为str是一段文本,比如“abcd#%$^*&”什么的,而bytes呢,是二进制的一堆0,1的比特而已.看下面的图: 可以看到str的类型是class 'str',而str.encode()以后类型是class

char str[] = {"abcd"}和 char* str = {"abcd"}的区别

char str[] = {"abcd"}和 char* str = {"abcd"}的区别 char* get_str(void) { char str[] = {"abcd"}; return str; } char str[] = {"abcd"};定义了一个局部字符数组,尽管是数组,但它是一个局部变量,返回它的地址肯定是一个已经释放了的空间的地址. 此函数返回的是内部一个局部字符数组str的地址, 且函数调用完毕后 此

StringUtils.isBlank(str)和StringUtils.isEmpty(str)的区别

StringUtils.isBlank(str)和StringUtils.isEmpty(str)的区别还是看他们的实现有何不同 1.StringUtils.isEmpty(CharSequence cs)实现源码 public static boolean isEmpty(CharSequence cs) { return cs == null || cs.length() == 0; } 从源码发现StringUtils.isEmpty(CharSequence cs)是判断了cs为null

python中string模块各属性以及函数的用法

任何语言都离不开字符,那就会涉及对字符的操作,尤其是脚本语言更是频繁,不管是生产环境还是面试考验都要面对字符串的操作. python的字符串操作通过2部分的方法函数基本上就可以解决所有的字符串操作需求: python的字符串属性函数 python的string模块 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 字符串属性函数 系统版本:CentOS release 6.2 (Final)2.6.32