Si hallas algún problema con tu código o trabajo, recuerda probar siempre en un ambiente de testing antes subir el código al proyecto final.
Ejemplo 1: longitud de string pitón
string ="hello"print(len(string))#>>> Outputs "5"iflen(string)>=10:print("This string is grater then 10")iflen(string)<=10:print("This string is smaller then 10")# Outputs "This string is smaller then 10"
Ejemplo 2: longitud de un string pitón
# Python program to demonstrate the use of # len() method # Length of below string is 5
string ="geeks"print(len(string))# Length of below string is 15
string ="geeks for geeks"print(len(string))
Nos encantaría que puedieras dar difusión a este ensayo si te ayudó.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)