continue, pass, break는 파이썬에서 제어 흐름에 사용되는 stattement이다. continue continue는 반복문에서 다음 순번의 loop를 실행하도록 한다. continue 다음의 코드는 실행되지 않는다. for num in range(2, 10): if num % 2 == 0: print("Found an even number", num) continue print("Found an odd number", num) ''' Found an even number 2 Found an odd number 3 Found an even number 4 Found an odd number 5 Found an even number 6 Found an odd number 7 Found an ..
ast 모듈은 파이썬에서 추상 구문 문법 트리를 처리하는 데 사용하는 모듈이다. ast 트리는 complie() 내장 함수나 ast 모듈에서 제공하는 parse() 함수를 사용하여 생성할 수 있다. ast 트리는 클래스가 모두 ast.AST에서 상속되는 객체들의 트리이다. parse() 함수는 나중에 ast 함수들과 함께 정리하고 이번에는 내장함수인 compile() 함수를 살펴보겠다. compile(source, filename, mode, flags=0, dont_inherit=False, optimize=-1)¶ source를 코드 혹은 AST 객체로 컴파일 하는 함수이다. 코드 객체는 exec() 또는 eval() 함수로 실행 가능하다. file: 읽을 코드의 이름 mode: 컴파일해야 하는 코드..
- Total
- Today
- Yesterday
- 코딩테스트
- 확장 함수
- pm.expect
- solidity
- postman collection
- 1차 인터뷰
- Basic Type
- 네이버 2022 공채
- 코틀린
- 2차 인터뷰
- Kotlin
- downTo
- Python
- mysql
- hashcode
- graphql
- Squash and merge
- python3
- postman tests
- go 특징
- DGS Framework
- Kotlin In Action
- pm.test
- squash merge
- postman
- 주생성자
- string
- git
- github
- java
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |