- [Python]class내 변수 선언의 사소한 실수 목차
반응형
나는 C-프로그램에 익숙해 있다
그래서 그런지 Python을 하면서 가장 기초적이고 사소한 실수를 많이 한다
1. SyntaxError: invalid syntax
class GameData:
int game_person
=> python에서 int는 타입 선언자가 아니라 class 이다(class int: )
2. name 'game_person' is not defined
class GameData:
game_person
game_person을 모르겠다고 나온다
3. 정상적인 변수선언
class GameData:
game_person= 0
변수에 초기값을 주어야 정상적으로 변수 선언이 된다
반응형
'python & 라즈베리파이' 카테고리의 다른 글
[tkinter]canvas(캔버스)에서 text(텍스트) 지우기/삭제하기 (0) | 2020.11.13 |
---|---|
[tkinter]메세지를 수신하여 GUI 변경하기 (0) | 2020.11.12 |
[tkinter]ttk의 style과 configure 사용 (0) | 2020.11.05 |
[python]argument of type 'int' is not iterable (0) | 2020.11.03 |
'sqlite3.OperationalError'>: near "VALUES": syntax error (0) | 2020.11.03 |