Python 코드에서 \'NameError: 이름 \'d\'가 정의되지 않았습니다\'라는 메시지가 나타나는 이유는 무엇입니까?

Linda Hamilton
풀어 주다: 2024-11-15 09:19:02
원래의
414명이 탐색했습니다.

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 코드에서 \'NameError: 이름 \'d\'가 정의되지 않았습니다\'라는 메시지가 나타나는 이유는 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿