Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What is the use of format function in python

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly shows you "what is the use of the format function in python", the content is simple and clear, and I hope it can help you solve your doubts, so let me lead you to study and learn "what is the use of the format function in python" this article.

Format usage

Basic usage

Anyone who has a basic knowledge of other languages should be more or less exposed to format string substitution. Here, let's take a direct look at the basic ways to use it:

Print ("My name is {}" .format ("liyuanjing")) # curly braces match, fill print ("My {1} is {0}" .format ("liyuanjing", "name")) # numeric matching sequentially, fill print ("My {name} is {tom}" .format (tom= "liyuanjing", name= "name")) # keyword matching by position, and fill in advanced usage by keyword

The format function can not only match the replacement string, but also use it to match its text, or take a few decimal places, and so on. Next, let's take a look at how these uses are implemented.

Print ('{} and {} '.format (' tom', 'Jerry')) print (' {: 10s} '.format (' *')) # default left alignment print ('{: > 10s} '.format (' *')) # right alignment print ('{: ^ 10s} '.format (' *')) # middle alignment print ('{:

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report