How To Find String Length In Python

Python len() function is an inbuilt function in Python language that returns a length of the string. In this example, we will see How To Find String Length In Python | Python String Length. Strings in Python are immutable sequences of Unicode code points.

How To Find String Length In Python

Python String len() method returns the length of the string.

Python len() method can be used to get the length of a given string, sequence, and collection.

Syntax

len(string)

It takes a string as the parameter.
See the following code.

# app.py

ST = "Millie Bobby Brown"
print("The String length of Millie Bobby Brown is:",len(ST))

BB = "Brayan Cranston"
print("The String length of Brayan Cranston is:", len(BB))

See the output.

➜  pyt python3 app.py
The String length of Millie Bobby Brown is: 18
The String length of Brayan Cranston is: 15
➜  pyt

Find String length using for loop and in operator

We will use Python for loop and in operator to find the length.

# app.py

def length(str):
    counter = 0
    for i in str:
        counter += 1
    return counter


str = "Millie Bobby Brown"
print(length(str))

See the output.

➜  pyt python3 app.py
18
➜  pyt

Find String Length using while loop and Slicing

We slice a string making it shorter by one at each iteration will eventually result in an empty string.

This is when while loop stops. Maintaining the count of the number of iterations will result in the length of the string.

# app.py

def length(str):
    counter = 0
    while str[counter:]:
        counter += 1
    return counter


str = "Millie Bobby Brown"
print(length(str))

See the output.

➜  pyt python3 app.py
18
➜  pyt

Find String Length using join and count

Python join() method takes in an iterable and returns the string, which is the concatenation of the strings in the iterable.
The separator between the items is the original string on which the method is called.

Using the join and counting the joined string in the original string will also result in the length of the string.

See the following code for more understanding.

def length(str):
    if not str:
        return 0
    else:
        some_random_str = 'Leonard Nimoy'
        return ((some_random_str).join(str)).count(some_random_str) + 1


str = "Millie Bobby Brown"
print(length(str))

See the output.

➜  pyt python3 app.py
18
➜  pyt

How to get the size of a string in bytes in Python

If you want to get the size of the string in bytes, you need the sys.getsizeof() method.

# app.py

import sys

str = "Millie Bobby Brown"
print("The byte size of Str is: ", sys.getsizeof(str))

See the output.

➜  pyt python3 app.py
The byte size of Str is:  67
➜  pyt

Getting the user entered string length

The following small program of Python takes a user input using the input function.

A length of the entered string is displayed using the len() function as follows.

# app.py

data = input('Enter a string? ')

print ("The length of entered string = ", len(data))

See the output.

➜  pyt python3 app.py
Enter a string? KRUNAL
The length of entered string =  6
➜  pyt

This may be useful where your program requires user input, and there is some limitation for entering the number of characters.

How to find length of list in Python

The len() method takes an argument where you may provide a list, and it returns the length of the given list. See the following code.

# app.py

data = ['Millie', 'Finn', 'Noah', 'Gaten', 'Caleb', 'Sadie']

print ("The length of entered list = ", len(data))

See the output.

➜  pyt python3 app.py
The length of entered list =  6
➜  pyt

How to find length of dictionary in Python

In the following code, we have defined one dictionary.

# app.py

data = {'eleven': 'Millie', 'mike': 'Finn', 'will': 'Noah'}

print ("The length of entered dict = ", len(data))

See the output.

➜  pyt python3 app.py
The length of entered dict =  3
➜  pyt

How to find length of set in Python

In the following code, we have defined one set.

# app.py

data = {'eleven', 'Millie', 'mike', 'Finn', 'will', 'Noah'}

print ("The length of entered set = ", len(data))

See the output.

# app.py

➜  pyt python3 app.py
The length of entered set =  6
➜  pyt

Finally, How To Find String Length In Python Tutorial Example is over.

Happy Coding!

Please like and share so I have the motivation to continue sharing!

#python

What is GEEK

Buddha Community

How To Find String Length In Python
Ray  Patel

Ray Patel

1619518440

top 30 Python Tips and Tricks for Beginners

Welcome to my Blog , In this article, you are going to learn the top 10 python tips and tricks.

1) swap two numbers.

2) Reversing a string in Python.

3) Create a single string from all the elements in list.

4) Chaining Of Comparison Operators.

5) Print The File Path Of Imported Modules.

6) Return Multiple Values From Functions.

7) Find The Most Frequent Value In A List.

8) Check The Memory Usage Of An Object.

#python #python hacks tricks #python learning tips #python programming tricks #python tips #python tips and tricks #python tips and tricks advanced #python tips and tricks for beginners #python tips tricks and techniques #python tutorial #tips and tricks in python #tips to learn python #top 30 python tips and tricks for beginners

Ray  Patel

Ray Patel

1619510796

Lambda, Map, Filter functions in python

Welcome to my Blog, In this article, we will learn python lambda function, Map function, and filter function.

Lambda function in python: Lambda is a one line anonymous function and lambda takes any number of arguments but can only have one expression and python lambda syntax is

Syntax: x = lambda arguments : expression

Now i will show you some python lambda function examples:

#python #anonymous function python #filter function in python #lambda #lambda python 3 #map python #python filter #python filter lambda #python lambda #python lambda examples #python map

How To Find String Length In Python | Python String Length

Python len() returns a length of the string.  Strings in Python are immutable sequences of Unicode code points.

How To Find String Length In Python

To find a string length in Python, use the len() function. Python String len() method returns the length of the string. Python len() method can be used to get the length of a given string, sequence, and collection.

Syntax

len(string)

#python #python string length #immutable

Art  Lind

Art Lind

1602968400

Python Tricks Every Developer Should Know

Python is awesome, it’s one of the easiest languages with simple and intuitive syntax but wait, have you ever thought that there might ways to write your python code simpler?

In this tutorial, you’re going to learn a variety of Python tricks that you can use to write your Python code in a more readable and efficient way like a pro.

Let’s get started

Swapping value in Python

Instead of creating a temporary variable to hold the value of the one while swapping, you can do this instead

>>> FirstName = "kalebu"
>>> LastName = "Jordan"
>>> FirstName, LastName = LastName, FirstName 
>>> print(FirstName, LastName)
('Jordan', 'kalebu')

#python #python-programming #python3 #python-tutorials #learn-python #python-tips #python-skills #python-development

Art  Lind

Art Lind

1602666000

How to Remove all Duplicate Files on your Drive via Python

Today you’re going to learn how to use Python programming in a way that can ultimately save a lot of space on your drive by removing all the duplicates.

Intro

In many situations you may find yourself having duplicates files on your disk and but when it comes to tracking and checking them manually it can tedious.

Heres a solution

Instead of tracking throughout your disk to see if there is a duplicate, you can automate the process using coding, by writing a program to recursively track through the disk and remove all the found duplicates and that’s what this article is about.

But How do we do it?

If we were to read the whole file and then compare it to the rest of the files recursively through the given directory it will take a very long time, then how do we do it?

The answer is hashing, with hashing can generate a given string of letters and numbers which act as the identity of a given file and if we find any other file with the same identity we gonna delete it.

There’s a variety of hashing algorithms out there such as

  • md5
  • sha1
  • sha224, sha256, sha384 and sha512

#python-programming #python-tutorials #learn-python #python-project #python3 #python #python-skills #python-tips