Python - float을 String으로 변환

Python에서 float 타입을 String 타입으로 변환하는 방법을 소개합니다.

1. str() 함수를 이용하여 float을 문자열로 변환

str()는 인자로 전달된 타입을 string으로 변환합니다.

type()을 이용하여 변환된 변수의 타입이 str인지 확인할 수 있습니다.

# float
floatNum = 1.2345

print(floatNum)
print(type(floatNum))

# float -> str
floatStr = str(floatNum)

print(floatStr)
print(type(floatStr))

Output:

1.2345
<class 'float'>
1.2345
<class 'str'>

References

Loading script...

Related Posts

codechachaCopyright ©2019 codechacha