📜  python double asterisk math - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:07.608000             🧑  作者: Mango

代码示例1
# double asterik (**) is the power operator. 
# The number to the left is raised to the power of the number on the right
# Example.
two_to_the_power_five = 2**5
# 2 is raised to the fifth power