0
Explain this function
def f(m,n): return m|n print (f(10,20)) #Outputs 30 Can you please explain the return statement. What is this "|" doing here resulting in =>30?
1 Resposta
def f(m,n): return m|n print (f(10,20)) #Outputs 30 Can you please explain the return statement. What is this "|" doing here resulting in =>30?