# Input from a file

### Input from a file

```
%cat /tmp/test.txt
```

Output:

```
1 2 3 4 5
6 7 8 9 10
```

```
with open('/tmp/test.txt','r') as fp:
    while True:
        line=fp.readline()
        if line:
            line=line.strip('\n')
            print(line.split(' '))
        else:
            break
```

Output:

```
['1', '2', '3', '4', '5']
['6', '7', '8', '9', '10']
```
