128. String Isprintable and Isspace Method in Python with Example Code || Python String Methods-10

Publicado el: 02 octubre 2022
en el canal de: Bhavatavi
11
0

Code:
s='Space is printable'
print(s)
print(s.isprintable())

s='\n New line is printable'
print(s)
print(s.isprintable())

s=''
print('\n Empty string is priontable?',s.isprintable())

s=chr(27)+chr(97)
if s.isprintable()==True:
print('Printable')
else:
print('not printable')

s='2+2=4'
if s.isprintable()==True:
print("Printable")
else:
print('not printable')
#issspace()

s=' \t'
print(s.isspace())
s=' a '
print(s.isspace())
s=''
print(s.isspace())

s='\t \n'
if s.isspace()==True:
print("All whitespace characters")
else:
print("contains non-whitespace characters")

s='2+2=4'
if s.isspace()== True:
print("All whitespace characters")
else:
print("contains non-whitespace characters")

str=' '
print(str.isspace())
str='helloworld'
print(str.isspace())


En esta página del sitio puede ver el video en línea 128. String Isprintable and Isspace Method in Python with Example Code || Python String Methods-10 de Duración hora minuto segunda en buena calidad , que subió el usuario Bhavatavi 02 octubre 2022, comparta el enlace con amigos y conocidos, en youtube este video ya ha sido visto 11 veces y le gustó 0 a los espectadores. Disfruta viendo!