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 #187
a @ b
a @ b is equivalent to matmul(a, b) . It returns the matrix product of two arrays. (docs.python.org/3/library/operator.html)
Which operator function corresponds to the syntax below?
— The Python Quiz (@thepythonquiz) September 29, 2020
a @ b
matmul(a, b)
matprod(a, b)
matprodarray(a, b)
mul(a, b)#python #python3 #pythonprogramming #learnpython
Question difficulty: π΅π΅π΅π΅π΅
Similar questions: