私のコードを定義されていないんなぜコード「変数」はエラーをスローが
def divide(x,y):
div = divmod(x,y)
return div
query = input("Enter numbers separated with a comma to divide: ")
divide(int(query.split(',')[0]),int(query.split(',')[1]))
print(div)
なぜそれがエラーを投げるん:
NameError: name 'div' is not defined.
それはそのスコープに存在しませんので。 –
質問履歴で判断すると、しばらくPHPを使用していますか?それはまったく同じように機能します。詳細については、https://ideone.com/v8aRCN – Ryan
をご覧ください。http://python-textbok.readthedocs.io/en/1.0/Variables_and_Scope.html – The4thIceman