python 函數參數和返回值

檢查參數類型 def my_f(x): if not isinstance(x, (int, float)): raise TypeError('bad operand type') # do something 返回多個值 def f(): nx = 1 ny = 2 return nx, ny # 一個tuple x, y = f()
相關文章
相關標籤/搜索