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


Python string.whitespace用法及代碼示例


在Python3中,string.whitespace是用作字符串常量的預初始化字符串。在Python中,string.whitespace將為字符提供空格,製表符,換行符,返回符,換頁符和垂直製表符。

用法: string.whitespace

參數:由於它不是函數,因此不帶任何參數。


返回值:返回字符空格,製表符,換行符,返回符,換頁符和垂直製表符。

注意:確保導入字符串庫函數以便使用string.whitespace

代碼1:

# import string library function  
import string  
  
print("Hello") 
# Storing the characters space, tab etc 
result = string.whitespace 
  
# Printing the values 
print(result) 
print("Geeksforgeeks")
輸出:
Hello
     


Geeksforgeeks


代碼2:給定代碼測試空白值。

# import string library function  
import string  
    
# An input string. 
Sentence = "Hey, Geeks !, How are you?"
  
for i in Sentence: 
      
    # checking whether the whitespace is present  
    if i in string.whitespace: 
          
        # Printing the whitespace values  
        print("printable Value is: " + i)
輸出:
printable Value is:  
printable Value is:  
printable Value is:  
printable Value is:  
printable Value is:


相關用法


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