Skip to content

Latest commit

 

History

History
52 lines (26 loc) · 493 Bytes

File metadata and controls

52 lines (26 loc) · 493 Bytes

Stringlerde Casting

a = "5"
b = "5.3"
int(a)

5

float(b)

5.3

int(b)
---------------------------------------------------------------------------

ValueError                                Traceback (most recent call last)

<ipython-input-5-07ae29993d50> in <module>
----> 1 int(b)ValueError: invalid literal for int() with base 10: '5.3'
int(float(b))

5