도전2022
파이썬 34개 키워드 본문
SMALL
프로그램 언어 학습 전 필수 암기, 언어 키워드
- 파이썬 키워드 : 조건
1. if
2. else
3. elif
4. not
5. or
6. and
7. is
8. True
9. False
10. None
- 파이썬 키워드 : 루프
11. for
12. in
13. while
14. break
15. as
16. continue
- 파이썬 키워드 : 내장함수
17. print
18. pass
19. del
- 파이썬 키워드 : 클래스, 모듈, 함수
20. class
21. def
22. global
23. lambda
24. nonlocal
25. yield
26. import
27. return
28. from
- 파이썬 키워드 : 오류처리
29. try
30. except
31. finally
32. raise
33. assert
34. with
LIST