Python: Calculate Logarithm of List Elements
To get the logarithm of each element in a list, you can utilize the 'math' module in Python. Here's an example:
import math
# Define a list of numbers
numbers = [1, 2, 3, 4, 5]
# Compute the logarithm of each element in the list
log_numbers = [math.log(x) for x in numbers]
# Print the resulting list
print(log_numbers)
In this example, we start by importing the 'math' module, which provides the 'log()' function for calculating the natural logarithm.
Next, we define a list of numbers called 'numbers'.
To compute the logarithm of each element in the 'numbers' list, we use a list comprehension. The 'math.log(x)' function is applied to each element 'x' in the 'numbers' list.
The resulting list of logarithms is stored in the 'log_numbers' list.
Finally, we print the 'log_numbers' list, which will display the logarithm of each element in the original list.
原文地址: https://www.cveoy.top/t/topic/oaD 著作权归作者所有。请勿转载和采集!