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


Python String zfill()用法及代碼示例


Python zfill() 方法將左邊的字符串填充為 0 位數字,形成一個長寬的字符串。它返回一個字符串,在 0 數字之前包含一個符號前綴 + 或 -。

如果寬度小於字符串長度,則返回原始長度字符串。

簽名

zfill(width)

參數

width: 字符串的長度。

返回

它返回一個字符串。

讓我們看一些 zfill() 方法的例子來了解它的函數。

Python 字符串 zfill() 方法示例 1

讓我們看一個寬度大於字符串長度的示例。它返回一個左側包含 0 且總長度等於寬度的新字符串。

# Python zfill(width) method 
# Declaring variables
text = "Zfill Example"
# Calling Function
str2 = text.zfill(20)
# Displaying result
print(str2)

輸出:

0000000Zfill Example

Python 字符串 zfill() 方法示例 2

在這裏,我們傳遞的寬度小於字符串長度,因此它返回原始字符串而不向左側填充零。

# Python zfill(width) method 
# Declaring variables
text = "Zfill Example"
# Calling Function
str2 = text.zfill(5)
# Displaying result
print(str2)

輸出:

Zfill Example

Python 字符串 zfill() 方法示例 3

此示例描述了在字符串左側填充零之前的 + 或 - 符號。查看每個值都在前綴(+ 或 -)後填充。

# Python zfill(width) method 
# Declaring variables
val = "+100"
val2 = "-200"
val3 = "--Rohan--"
# Calling Function
str2 = val.zfill(10)
str3 = val2.zfill(10)
str4 = val3.zfill(10)

# Displaying result
print(str2)
print(str3)
print(str4)

輸出:

+000000100
-000000200
-0-Rohan--

Python 元組方法







相關用法


注:本文由純淨天空篩選整理自 Python String zfill() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。