Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- influxdb 설치
- python os
- snmp test
- linux시간으로 변경
- c3 축 가리기
- c3 축 없애기
- 정규식 활용
- regex_search
- 백준
- 1697
- InfluxDB
- python popen
- 정규식 컴파일
- gcc regex
- snmp
- c3 second
- telegraf
- gcc 업데이트
- c3 step graph
- centos pyhon 설치
- CentOS7
- python subprocess
- c++ 정규식
- grafana dashboard
- c3 초
- 정규식 문자열 출력
- g++ 업데이트
- subporcess path
- selinux port 등록
- semanage
Archives
- Today
- Total
리셋 되지 말자
[python 문법] 타입 힌트 본문
타입 힌트
파이썬은 동적 타이핑 언어이지만 타입힌트(Type Hint)가 PEP 484 문서에 추가됐다고 한다. (파이썬 3.5부터 사용 가능)
변수의 타입 힌트
a: str = "1"
b: int = 1
함수의 타입 힌트
def func(a: int) -> bool:
함수의 인자인 a는 int형이어야 하고, 함수의 return 값의 형식은 bool(True, False)이어어한다.
mypy 패키지
mypy 패키지를 설치하면 타입 힌트에 오류가 없는지 확인 가능
$ pip install mypy
'Python' 카테고리의 다른 글
[python 공부] 프로그래머스 코딩 팁 기록 (0) | 2021.04.09 |
---|---|
[python 문법] map, filter, 람다 표현식, 리스트 컴프리헨션, 리스트 컴프리헨션 (0) | 2021.02.26 |
[python 문법] 네이밍 컨벤션 (0) | 2021.02.26 |
[python 공부] .index (0) | 2020.11.02 |
[python 공부] isdigit, isalpha, isalnum (0) | 2020.11.02 |
Comments