Python中使用abs()函数计算数值的绝对值

2023-04-01 00:00:00 函数 数值 绝对值

当我们需要计算一个数的绝对值时,可以使用Python内置的abs()函数。该函数返回一个数的绝对值。

以下是使用Python的abs()函数计算数值绝对值的示例代码:

num = -10
abs_num = abs(num)
print("The absolute value of", num, "is", abs_num)

输出:

The absolute value of -10 is 10

如果我们要使用字符串作为输入参数,同样可以使用abs()函数计算字符串长度的绝对值,以下是示例代码:

str1 = "pidancode.com"
str2 = "皮蛋编程"

abs_str1 = abs(len(str1))
abs_str2 = abs(len(str2))

print("The absolute value of the length of", str1, "is", abs_str1)
print("The absolute value of the length of", str2, "is", abs_str2)

输出:

The absolute value of the length of pidancode.com is 13
The absolute value of the length of 皮蛋编程 is 5

注意,当我们传入一个字符串时,需要先使用len()函数计算字符串的长度,然后再使用abs()函数计算长度的绝对值。

相关文章