“Как найти длину строки в Python без использования LEN” Ответ

Строковые ахарактеры учитываются в Python без использования LEN

# User inputs the string and it gets stored in variable str
str = input("Enter a string: ")

# counter variable to count the character in a string
counter = 0
for s in str:
      counter = counter+1
print("Length of the input string is:", counter)
Healthy Hummingbird

Как найти длину строки в Python без использования LEN

#defining a function to find the length of a string 
def find_length_str(string):
	counter = 0
    if type(string) != str:
        print("Please enter a string...")
    else:
        for s in string:
        	counter += 1
            string += s
        return counter
        
find_length_string('ABCDEFG')
Shaurya Maharishi

Ответы похожие на “Как найти длину строки в Python без использования LEN”

Вопросы похожие на “Как найти длину строки в Python без использования LEN”

Больше похожих ответов на “Как найти длину строки в Python без использования LEN” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования