- int to float
- float
1 Python[ | ]

Python
Copy
print( float(10) )
# 10.0
Python
Copy
print( type(float(10)) )
# <class 'float'>
2 같이 보기[ | ]
편집자 Jmnote Jmnote bot
로그인하시면 댓글을 쓸 수 있습니다.
print( float(10) )
# 10.0
print( type(float(10)) )
# <class 'float'>