Python コードで「名前エラー: 名前 \'d\' が定義されていません」というメッセージが表示されるのはなぜですか?

Linda Hamilton
リリース: 2024-11-15 09:19:02
オリジナル
416 人が閲覧しました

Why am I getting a \

Python Error: Name 'd' Not Defined

In your Python code, you encountered an error message stating that "name 'd' is not defined." This error typically occurs when you attempt to access or modify a variable without initializing or defining it beforehand.

In the code snippet you provided, you request user input for a name and a description. The error is triggered when you input "d" instead of a string, such as your actual name.

In Python 2.x, the input() function interprets the input as a Python expression and expects a variable. When you enter "d," Python attempts to find a defined variable named d, but it does not exist.

To resolve this issue, you can either use raw_input() in Python 2.x, which returns a string without evaluating it, or switch to Python 3.x, where input() handles string input correctly.

Solution:

In Python 2.x:

Name = raw_input('What is your Name? ')
Desc = raw_input('Describe yourself: ')
ログイン後にコピー

In Python 3.x:

Name = input('What is your Name? ')
Desc = input('Describe yourself: ')
ログイン後にコピー

以上がPython コードで「名前エラー: 名前 \'d\' が定義されていません」というメッセージが表示されるのはなぜですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
著者別の最新記事
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート