Go Python formatted output

Source: Internet
Author: User

Today, the program also does not remember the format of the output details ... = = simply tidy up.

Python print formatted output.

1. Print a string

Print ("His name is%s"% ("Aviad"))

Effect:

2. Printing integers

Print ("He is%d years old"% (25))

Effect:

3. Print floating-point numbers

Print ("His height is%f m"% (1.83))

Effect:

4. Print floating-point numbers (Specify the number of decimal places reserved)

Print ("His height is%.2f m"% (1.83))

Effect:

5. Specify the placeholder width

Print ("name:%10s age:%8d height:%8.2f"% ("Aviad", 25,1.83))

Effect:

6. Specify the placeholder width (left-justified)

Print ("name:%-10s age:%-8d height:%-8.2f"% ("Aviad", 25,1.83))

Effect:

7. Specify placeholders (only 0 placeholders?). )

Print ("name:%-10s age:%08d height:%08.2f"% ("Aviad", 25,1.83))

Effect:

8. Scientific counting method

Format (0.0015, '. 2e ')

Effect:

Ttp://www.cnblogs.com/plwang1990/p/3757549.html

Go Python formatted output

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.