當我運行這個簡單的腳本並輸入信息時會出現一個錯誤消息:Name error: name'...' is not defined
。當我運行此代碼並輸入信息時,爲什麼會出現「名稱錯誤:名稱」...「未定義」?
Name = str(input("Enter the name of your friend: "))
Age = int(input("Enter age of that friend: "))
print("The name of your friend is {} and their age is {}".format(Name, Age))
你使用Python2嗎?也請修正你的代碼中的錯別字。 – shuttle87