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 |
Tags
- es6
- mapreduce
- IntelliJ
- 보조정렬
- R
- hadoop
- Kotlin
- MSSQL
- react
- window
- SPC
- NPM
- Eclipse
- Spring
- 공정능력
- plugin
- table
- Express
- SSL
- Sqoop
- Python
- GIT
- JavaScript
- SQL
- tomcat
- mybatis
- vaadin
- Java
- xPlatform
- Android
Archives
- Today
- Total
DBILITY
python 논리 연산 본문
반응형
그냥 이렇다..
>>> x=1
>>> y=float(1)
>>> x==y
True
>>> x
1
>>> y
1.0
>>> x!=y
False
>>> x>y
False
>>> x<y
False
>>> x>=y
True
>>> x<=y
True
>>>
반응형
'python' 카테고리의 다른 글
python module ( 모듈 ) (0) | 2019.05.05 |
---|---|
python user defined function ( 사용자 정의 함수 ) (0) | 2019.05.04 |
python control statement ( 제어문 ) (0) | 2019.05.04 |
python 기본 자료형 및 자료구조 (0) | 2019.05.04 |
python install (설치 ) (0) | 2019.05.04 |
Comments