Update README.md

This commit is contained in:
Niru Maheswaranathan
2016-05-03 23:13:57 -07:00
parent 8b3288fc85
commit c06c54e375

View File

@@ -23,7 +23,7 @@ The `tableprint.table` function takes in a matrix of data, a list of headers, a
import tableprint
import numpy as np
data = np.random.randn(10,3)
data = np.random.randn(10, 3)
headers = ['Column A', 'Column B', 'Column C']
tableprint.table(data, headers)