See More

## Stringlerde Casting ```python a = "5" ``` ```python b = "5.3" ``` ```python int(a) ``` > 5 ```python float(b) ``` > 5.3 ```python int(b) ``` --------------------------------------------------------------------------- ValueError Traceback (most recent call last) in ----> 1 int(b)ValueError: invalid literal for int() with base 10: '5.3' ```python int(float(b)) ``` > 5