當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python Pandas Series.str.center()用法及代碼示例


Series.str可用於以字符串形式訪問係列的值並對其應用幾種方法。 Pandas Series.str.center()函數用於在係列/索引中的字符串的左側和右側填充其他字符。該函數等效於Python的str.center()

用法: Series.str.center(width, fillchar=’ ‘)

參數:
width:產生的字符串的最小寬度;其他字符將用fillchar填充
fillchar:填充字符,默認為空白


返回:填充

範例1:采用Series.str.center()函數用“ *”符號填充給定係列對象的基礎數據中字符串的左側和右側。

# importing pandas as pd 
import pandas as pd 
  
# Creating the Series 
sr = pd.Series(['New_York', 'Lisbon', 'Tokyo', 'Paris', 'Munich']) 
  
# Creating the index 
idx = ['City 1', 'City 2', 'City 3', 'City 4', 'City 5'] 
  
# set the index 
sr.index = idx 
  
# Print the series 
print(sr)

輸出:

現在我們將使用Series.str.center()函數在字符串的左側和右側填充“ *”符號。

# fill '*' in the left and right side of string 
result = sr.str.center(width = 13, fillchar = '*') 
  
# print the result 
print(result)

輸出:

正如我們在輸出中看到的,Series.str.center()函數已成功在給定係列對象的基礎數據中的字符串的左側和右側填充了“ *”符號。

範例2:采用Series.str.center()函數用“ *”符號填充給定係列對象的基礎數據中字符串的左側和右側。

# importing pandas as pd 
import pandas as pd 
  
# Creating the Series 
sr = pd.Series(['Mike', 'Alessa', 'Nick', 'Kim', 'Britney']) 
  
# Creating the index 
idx = ['Name 1', 'Name 2', 'Name 3', 'Name 4', 'Name 5'] 
  
# set the index 
sr.index = idx 
  
# Print the series 
print(sr)

輸出:


現在我們將使用Series.str.center()函數在字符串的左側和右側填充“ *”符號。

# fill '*' in the left and right side of string 
# width after filling should be 5 
result = sr.str.center(width = 5, fillchar = '*') 
  
# print the result 
print(result)

輸出:

正如我們在輸出中看到的,Series.str.center()函數已成功在給定係列對象的基礎數據中的字符串的左側和右側填充了“ *”符號。

注意:如果width的值小於實際字符串的長度,則整個字符串將被打印而不會被截斷。



相關用法


注:本文由純淨天空篩選整理自Shubham__Ranjan大神的英文原創作品 Python | Pandas Series.str.center()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。