Describes how to use the fabs () method in Python.

Source: Internet
Author: User
This article describes how to use the fabs () method in Python. It is the basic knowledge in getting started with Python. If you need it, you can refer to the fabs () method to return the absolute value of x.
Syntax

The syntax of the fabs () method is as follows:

Import mathmath. fabs (x)

Note: This function cannot be directly accessed. Therefore, we need to import the math module and then use the static object of math to call this function.
Parameters

  • X -- this is a value.

Return Value

This method returns the absolute value of x.
Example

The following example shows how to use the fabs () method.

#! /Usr/bin/pythonimport math # This will import math moduleprint "math. fabs (-45.17): ", math. fabs (-45.17) print "math. fabs (100.12): ", math. fabs (100.12) print "math. fabs (100.72): ", math. fabs (100.72) print "math. fabs (119L): ", math. fabs (119L) print "math. fabs (math. pi): ", math. fabs (math. pi)

When we run the above program, it will produce the following results:

Math. fabs (-45.17): 45.17math.fabs (100.12): 100.12math.fabs (100.72): 100.72math.fabs (119L): 119.0math.fabs (math. pi): 3.14159265359

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.