How to get help on built-in function pow in math with Python

1 Answer

0 votes
print(help('math.pow'))

    
    

'''
run:

Help on built-in function pow in math:

math.pow = pow(x, y, /)
    Return x**y (x to the power of y).

'''

 



answered Apr 26, 2021 by avibootz

Related questions

1 answer 304 views
1 answer 278 views
1 answer 209 views
1 answer 331 views
1 answer 339 views
1 answer 207 views
207 views asked Oct 17, 2020 by avibootz
...