Python Function: Calculate (x-7)^x
Function: math_function
Input: int or float
Output: int or float
Test Cases:
math_function(5) => 1024
math_function(2) => 1
math_function(10) => 2187
Description: This function takes a number x and calculates (x-7)^x.
def math_function(x): ''' This function calculates (x-7)^x. Input: int or float Output: int or float Test Cases: math_function(5) => 1024 math_function(2) => 1 math_function(10) => 2187 ''' return (x-7)**x
print(math_function(5)) # Output: 1024 print(math_function(2)) # Output: 1 print(math_function(10)) # Output: 2187
原文地址: https://www.cveoy.top/t/topic/lUj8 著作权归作者所有。请勿转载和采集!