First product method. # Takes two argument and print their # product def product(a, b): p = a * b print(p) # Second product method # Takes three argument ...
確定! 回上一頁