当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。