Describes how to use the expandtabs () method in Python, pythonexpandtabs

Source: Internet
Author: User

Describes how to use the expandtabs () method in Python, pythonexpandtabs

The expandtabs () method returns a tab, that is, a copy of the string. '\ T' used space. You can use the given tabsize (8 by default) extension.
Syntax

The syntax of the expandtabs () method is as follows:

Str. expandtabs (tabsize = 8)

Parameters

  • Tabsize -- this option specifies the number of characters to replace with the tab "\ t.

Return Value

This method is returned in the tab, that is, the extension string '\ t' copy is carried out through spaces.
Example

The following example shows how to use the expandtabs () method.

#! /Usr/bin/pythonstr = "this is \ tstring example... wow !!! "; Print" Original string: "+ str; print" Defualt exapanded tab: "+ str. expandtabs (); print" Double exapanded tab: "+ str. expandtabs (16 );

When we run the above program, it will produce the following results:

Original string: this is string example... wow !!! Defualt exapanded tab: this is string example... wow !!! Double exapanded tab: this is string example... wow !!!

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.