The quiz where the difficulty automagically adapts to the player's Python knowledge
This is a question page. You can use this page to bookmark a question. Start a new quiz!
Question #600
a, b = 2, 3
print(a**b**a)
a receives 2 and b receives 3 . The ** operator start with the 2 elements on the right. 3**2 make 9 , and 2**9 make 512 . (docs.python.org/3.4/library/operator.html)
Question difficulty: 🔵🔵🔵🔵🔵