0w0

[BASIC] 파이썬 숫자 자료형 본문

Coding/Python

[BASIC] 파이썬 숫자 자료형

0w0 2020. 11. 15. 18:06
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
반응형
Comments