반응형
Calling a Function or Module Before It's Defined
Problematic Code:
greet()
def greet():
print("Hello, World!")
Error Message:
NameError: name 'greet' is not defined
Solution: You must define the function or module before calling it.
def greet():
print("Hello, World!")
greet()
반응형
'Python > error debug' 카테고리의 다른 글
TypeError: can't multiply sequence by non-int of type 'list' (0) | 2024.08.17 |
---|---|
TypeError: can only concatenate str (not "int") to str (0) | 2024.08.17 |
NameError: name 'nam' is not defined (0) | 2024.08.10 |
NameError: name 'name' is not defined (0) | 2024.08.10 |
IndentationError: unindent does not match any outer indentation level (0) | 2024.08.04 |