0w0
[BASIC] 파이썬 숫자 자료형 본문
728x90
반응형
#숫자 자료형
print(5)
print(-10)
print(3.14)
print(10000)
print()
print(4+3)
print(4*3)
print(3*(4+1))
#출력형태
C:\Users\0w0\Anaconda3\envs\pytest\python.exe C:/Users/0w0/PycharmProjects/pytest/test.py
5
-10
3.14
10000
7
12
15
Process finished with exit code 0
728x90
반응형
'Coding > Python' 카테고리의 다른 글
[BASIC] 파이썬 boolean 자료형 (0) | 2020.11.15 |
---|---|
[BASIC] 파이썬 문자 자료형 (0) | 2020.11.15 |
[selenium] 파이어폭스 드라이버 Error (0) | 2020.09.01 |
[requests] html_parsing 함수 (0) | 2019.12.22 |
[selenium wait] Implicitly wait 및 Explicitly wait (0) | 2019.09.01 |
Comments