What is the double multiplication sign for?
Exponentiation in some software. So a**b means a^b.
Caveat: The symbol ^ in C family languages is bitwise xor. This is true in Python, too. The ** symbol is also seen in Python.
Exponentiation in some software. So a**b means a^b.
Caveat: The symbol ^ in C family languages is bitwise xor. This is true in Python, too. The ** symbol is also seen in Python.