En Python3, string.whitespace
es una string preiniciada que se usa como constante de string. En Python, string.whitespace
le dará a los caracteres espacio, tabulación, salto de línea, retorno, salto de forma y tabulación vertical.
Sintaxis: string.espacio en blanco
Parámetros: No toma ningún parámetro, ya que no es una función.
Devoluciones: Devuelve los caracteres espacio, tabulador, salto de línea, retorno, salto de forma y tabulador vertical.
Nota: asegúrese de importar la función de biblioteca de strings para usar string.whitespace
Código #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
Código n. ° 2: las pruebas de código dadas para los valores de espacios en blanco.
# 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:
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA