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 the round () function in Python

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

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

This article introduces what is the use of the round () function in Python, the content is very detailed, interested friends can refer to, hope to be helpful to you.

Description

The round () method returns the rounded value of the floating point number x.

Grammar

The following is the syntax of the round () method:

Round (x [, n]) parameter

X-numeric expression.

N-- a numeric expression that represents the number of places from the decimal point.

Return value

Returns the rounded value of the floating point number x.

Example

The following shows an example of using the round () method:

Example #! / usr/bin/pythonprint "round (80.23456, 2):", round (80.23456, 2) print "round (100.000056, 3):", round (100.000056, 3) print "round (- 100.000056, 3):", round (- 100.000056, 3)

The output result of the above instance is as follows:

Round (80.23456, 2): 80.23round (100.000056, 3): 100.0round (- 100.000056, 3):-100.0 about the usefulness of the round () function in Python is shared here. I hope the above content can be helpful to everyone and learn more knowledge. If you think the article is good, you can share it for more people to see.

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

Internet Technology

Wechat

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

12
Report