28.10.2021 Views

Python Tutorial ( PDFDrive )

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

str = "-";

seq = ("a", "b", "c"); # This is sequence of strings.

print str.join( seq );

Let us compile and run the above program, this will produce the following result:

a-b-c

len(string)

Description

The method len() returns the length of the string.

Syntax

Following is the syntax for len() method:

len( str )

Parameters

• NA

Return Value

This method returns the length of the string.

Example

The following example shows the usage of len() method.

#!/usr/bin/python

str = "this is string example....wow!!!";

print "Length of the string: ", len(str);

Let us compile and run the above program, this will produce the following result:

Length of the string: 32

ljust(width[, fillchar])

Description

The method ljust() returns the string left justified in a string of length width. Padding is done using the

specified fillchar (default is a space). The original string is returned if width is less than len(s).

Syntax

Following is the syntax for ljust() method:

TUTORIALS POINT

Simply Easy Learning

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!