## 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)