Introduction to the use of the Maketrans () method in the python2.x version

Source: Internet
Author: User

This article mainly introduces the use of Maketrans () method in python2.x version, is the basic knowledge of Python learning, need friends can refer to the following

The Maketrans () method returns the string Intab each character to the character's string outtab the same position as the conversion table. The table is then passed to the translate () function.

Note: Two intab and Outtab must have the same length.

Grammar

The following is the syntax for the Maketrans () method:

?

1 Str.maketrans (Intab, Outtab]);

Parameters

Intab--This is a string of actual characters.

Outtab--This is the corresponding string of mapped characters.

return value

The conversion table translate () function is used when this method returns.

Example

The following example shows the use of the Maketrans () method. In this case, each vowel in a string replaces the position of its vowel:

?

1 2 3 4 5 6 7 8 9 10 #!/usr/bin/python from string import Maketrans # Required to call Maketrans function. Intab = "Aeiou" Outtab = "12345" Trantab = Maketrans (intab, outtab) str = "This is string Example....wow!!!"; Print str.translate (trantab);

When we run the above program, it produces the following results:

?

1 TH3S 3s str3ng 2x1mpl2....w4w!!!

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.