สอนเขียนโปรแกรมแปลง String เป็น Float ด้วยภาษา Python โดยใช้คำสั่ง float คลุมตัวแปรชนิด string ซึ่งเป็นการแปลงจากข้อความเป็นตัวเลขทศนิยม สามารถเขียนโปรแกรมได้ดังนี้
ตัวอย่าง แปลง String เป็น Float Python
s = '123.56'
print( type(s), s )
s = float(s)
s = s + 10.23
print( type(s), s )
ผลลัพธ์
<class 'str'> 123.56
<class 'float'> 133.79