What is ** (two asterisks) used for in Python?
Like, exampleVariable = 5 ** 5
Thanks for any help!
What is ** (two asterisks) used for in Python?
Like, exampleVariable = 5 ** 5
Thanks for any help!
** is used as exponent. So 2 ** 2 is 2 to the second power, or 3 ** 3 is 3 to the third power, or 27.