👉 기본 환경
- Language: Python
- IDE: Replit
⌨️ 코드
1
2
|
1input = input("What is your name?")
|
🖨️오류
SyntaxError: invalid syntax
📡 원인
변수의 시작 글자는 숫자일 수 없음
📰 해결 방법
1
2
3
|
input1 = input("What is your name?")
_1input = input("What is your name?")
|
변수의 시작 글자를 문자 또는 _로 변경
'Python > Python with Error' 카테고리의 다른 글
[해결 방법] TypeError: can only concatenate str (not "int") to str (0) | 2023.08.08 |
---|---|
[해결 방법] TypeError: object of type 'int' has no len() (0) | 2023.08.08 |
[해결 방법] NameError: name '...' is not defined (0) | 2023.08.06 |
[해결 방법] SyntaxError: unexpected EOF while parsing (0) | 2023.08.05 |
[해결 방법] IndentationError: unexpected indent (0) | 2023.08.05 |