Quick actions

cmd+k|ctrl+k

Navigation

Languages

2019-10-13

Snippet info

Language

Python

Visibility

public

Author

kkanghj6514

Created

2019-10-13T03:53:53Z

Updated

2019-10-13T03:54:05Z

c = 3.5
print(type(c))
print(3/2)
print(type(2/2)) #2/2의 결과는 1이 아니고 1.0입니다
INFO