Python language basics 38: how to partition a string

Introduction

In the previous post we looked at the split function that operates on strings. We saw how it could split up a string into its elements using a delimiter.

In this post we’ll look at the partition function of the string type.

String partitioning

String partitioning is somewhat similar to splitting. The partition function accepts a partitioning string argument and returns the elements to the left and right of that argument including the partitioner itself. The elements are returned in a tuple. Imagine you have the time formatted as “hour:minutes” then you can partition that string as follows:

time = "14:55"
partitioned = time.partition(':')
print(partitioned)

‘partitioned’ will become…

(’14’, ‘:’, ’55’)

You can access the individual elements by an indexer as we saw before:

hour = partitioned[0]
minute = partitioned[2]

Alternatively you can assign the individual values in the partition to variables:

hour, partitioner, minute = time.partition(':')
print(' '.join([hour, minute]))

…which prints “14 55”.

Read the next post here.

Read all Python-related posts on this blog here.

Advertisement

About Andras Nemes
I'm a .NET/Java developer living and working in Stockholm, Sweden.

One Response to Python language basics 38: how to partition a string

  1. hardik says:

    you should combine all the string related functions in one article.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

Elliot Balynn's Blog

A directory of wonderful thoughts

Software Engineering

Web development

Disparate Opinions

Various tidbits

chsakell's Blog

WEB APPLICATION DEVELOPMENT TUTORIALS WITH OPEN-SOURCE PROJECTS

Once Upon a Camayoc

Bite-size insight on Cyber Security for the not too technical.

%d bloggers like this: