Using the Format function for formatting strings in Python_python

Source: Internet
Author: User

This article mainly introduces the use of format string in Python, format string is the basic knowledge of Python learning, this article mainly for the python2.7.x version, the need for friends can refer to the following

Since python2.6, a new function Str.format () that formats the string has been added to the power. So, what's the advantage of being compared to the previous% format string? Let us uncover the veil of its shy.
Grammar

It replaces% with {} and:.
Map sample

By location

In [1]:'{0},{1}'. Format ('KZC', 18) out[1]:'kzc,18'In [2]:'{},{}'. Format ('KZC', 18) out[2]:'kzc,18'In [3]:'{1},{0},{1}'. Format ('KZC', 18) out[3]:'18,kzc,18'

The Format function of the string can accept an unlimited number of parameters, the position can be out of order, can not be used or multiple times, but 2.6 can not be empty {},2.7.

by keyword parameter

' {name},{age} '. Format (age=18,name='kzc') out['kzc,18' 

Through object properties

class Person :   def __init__ (self,name,age):     = Name,age    def__str__(self):      return' This was {self.name},is {self.age} old '. Format (self=self)

In [2]: str (the person ('kzc')) out['This guy iskzc,is  '

by subscript

In [7]: p=['kzc',]in ['{0[0]},{0[1]}' . Format (p) out['kzc,18'

With these convenient "mapping" methods, we have a lazy weapon. Basic Python knowledge tells us that list and tuple can be "broken" into normal parameters to the function, and dict can be broken into the keyword parameters to the function (through and *). So you can easily pass a list/tuple/dict to the Format function. Very flexible.

Format qualifier

It has a rich "format qualifier" (syntax is {} with:), such as:

Fill and align
Padding is used in conjunction with alignment
^, <, > center, Align Left, right, back with width
: The fill character after the number, only one character, not specified by default is filled with a space
Like what

In [15]:'{: >8}'. Format ('189') out[15]:'189'In [16]:'{: 0>8}'. Format ('189') out[16]:'00000189'In [17]:'{: a>8}'. Format ('189') out[17]:'aaaaa189'

Accuracy and type F
Accuracy is often used in conjunction with Type F

' {:. 2f} '. Format (321.33345) out['321.33'

Where. 2 represents a precision of 2 length, and F represents a float type.

Other types
Mainly in the system, B, D, O, X are binary, decimal, octal, hexadecimal.

In [54]:'{: b}'. Format (17) out[54]:'10001'In [55]:'{:D}'. Format (17) out[55]:' -'In [56]:'{: o}'. Format (17) out[56]:' +'In [57]:'{: x}'. Format (17) out[57]:' One'

Use, the number can also be used to make the amount of thousands separator.

' {:,} '. Format (1234567890) out['1,234,567,890'

Transferred from: http://www.jb51.net/article/63672.htm

Using the Format function for formatting strings in Python_python

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.